-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2041 from GSA/dev
Release v0.9.0 (Sprint 48)
- Loading branch information
Showing
101 changed files
with
2,567 additions
and
1,073 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,55 @@ on: | |
workflow_dispatch: # Allows manual trigger | ||
|
||
jobs: | ||
update-submodule: | ||
# update-submodule-on-release: | ||
# name: update-submodule-on-release | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - name: Checkout repository without submodules | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# submodules: false # Do not checkout submodules initially | ||
# fetch-depth: 0 # Fetch all history | ||
# | ||
# - name: Set up Git | ||
# run: | | ||
# git config --global user.name "Xavier Metichecchia" | ||
# git config --global user.email "[email protected]" | ||
# git config --global pull.rebase false # Ensure merge strategy | ||
# git remote set-url origin https://${{ secrets.HASH_PAT }}@github.com/GSA/px-benefit-finder.git | ||
# | ||
# - name: Update submodules on release branch | ||
# continue-on-error: true | ||
# run: | | ||
# # Checkout the release branch | ||
# git checkout release | ||
# | ||
# # Update and initialize submodules | ||
# git submodule update --init | ||
# git submodule set-branch --branch prod usagov-2021 | ||
# git submodule update --remote || echo "Expected error: Failed to update all submodules." | ||
# | ||
# # Check Git Status | ||
# git add . | ||
# git commit --allow-empty -m "Updated submodule to the latest commit on release branch" | ||
# | ||
# # Commit the changes | ||
# git status | ||
# git --no-pager diff | ||
# | ||
# # Push changes to release branch | ||
# git push origin release | ||
|
||
update-submodule-on-main: | ||
name: update-submodule-on-main | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository without submodules | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: false # Do not checkout submodules initially | ||
# submodules: false # Do not checkout submodules initially | ||
fetch-depth: 0 # Fetch all history | ||
|
||
- name: Set up Git | ||
|
@@ -21,46 +62,44 @@ jobs: | |
git config --global pull.rebase false # Ensure merge strategy | ||
git remote set-url origin https://${{ secrets.HASH_PAT }}@github.com/GSA/px-benefit-finder.git | ||
- name: Update submodules on release branch | ||
continue-on-error: true | ||
run: | | ||
# Checkout the release branch | ||
git checkout release | ||
# Update and initialize submodules | ||
git submodule update --init | ||
git submodule set-branch --branch prod usagov-2021 | ||
git submodule update --remote || echo "Expected error: Failed to update all submodules." | ||
# Check Git Status | ||
git add . | ||
git commit --allow-empty -m "Updated submodule to the latest commit on release branch" | ||
# Commit the changes | ||
git status | ||
git --no-pager diff | ||
# Push changes to release branch | ||
git push origin release | ||
- name: Sync release to main | ||
run: | | ||
# Switch to the main branch | ||
git checkout main | ||
git submodule update --remote | ||
# Pull changes from release into main | ||
git pull origin release | ||
# Push updated main branch | ||
git push origin main | ||
- name: Sync release to dev | ||
run: | | ||
# Switch to the dev branch | ||
git checkout dev | ||
# Pull changes from release into dev | ||
git pull origin release | ||
# Push updated dev branch | ||
git push origin dev | ||
# update-submodule-on-dev: | ||
# name: update-submodule-on-dev | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - name: Checkout repository without submodules | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# # submodules: false # Do not checkout submodules initially | ||
# fetch-depth: 0 # Fetch all history | ||
# | ||
# - name: Set up Git | ||
# run: | | ||
# git config --global user.name "Xavier Metichecchia" | ||
# git config --global user.email "[email protected]" | ||
# git config --global pull.rebase false # Ensure merge strategy | ||
# git remote set-url origin https://${{ secrets.HASH_PAT }}@github.com/GSA/px-benefit-finder.git | ||
# | ||
# - name: Sync release to dev | ||
# run: | | ||
# # Switch to the dev branch | ||
# git checkout dev | ||
# | ||
# # Pull changes from release into dev | ||
# git pull origin release | ||
# | ||
# # Push updated dev branch | ||
# git push origin dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
{ | ||
"recommendations": [ | ||
"rvest.vs-code-prettier-eslint" | ||
], | ||
"recommendations": ["github.vscode-github-actions", "esbenp.prettier-vscode"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{ | ||
"debug.javascript.autoAttachFilter": "onlyWithFlag", | ||
"editor.renderWhitespace": "none", | ||
"diffEditor.ignoreTrimWhitespace": false, | ||
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint", | ||
"editor.formatOnType": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnSaveMode": "file", | ||
"vs-code-prettier-eslint.prettierLast": true, | ||
"debug.javascript.autoAttachFilter": "onlyWithFlag", | ||
"editor.renderWhitespace": "none", | ||
"diffEditor.ignoreTrimWhitespace": false, | ||
"editor.formatOnType": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnSaveMode": "file", | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | ||
"version": "0.2", | ||
"ignorePaths": [ | ||
"node_modules", | ||
"themes", | ||
"storybook-static", | ||
"dist", | ||
"coverage", | ||
"build", | ||
"src/shared/locales/es/es.json" | ||
], | ||
"language": "en", | ||
"dictionaryDefinitions": [ | ||
{ "name": "content", "path": "./cspell-dictionary/content.txt" }, | ||
{ "name": "dev", "path": "./cspell-dictionary/dev.txt" }, | ||
{ "name": "es", "path": "./cspell-dictionary/es.txt" }, | ||
{ "name": "project", "path": "./cspell-dictionary/project.txt" } | ||
], | ||
"dictionaries": [ | ||
"html", | ||
"bash", | ||
"css", | ||
"node", | ||
"content", | ||
"dev", | ||
"es", | ||
"project" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,8 @@ | |
], | ||
"src/**/*.scss": [ | ||
"stylelint --fix" | ||
], | ||
"**": [ | ||
"cspell lint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DOLO | ||
FEMA | ||
FASS | ||
CHAMPVA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
autodocs | ||
camelcase | ||
esbenp | ||
fieldgroup | ||
fieldset | ||
fieldsets | ||
firstname | ||
lastname | ||
stylelint | ||
backcta | ||
spacebar | ||
pageup | ||
pagedown | ||
icongallery | ||
skipnav | ||
Vitest | ||
labelledby | ||
tabindex | ||
stylesheet | ||
hreflang | ||
evenodd | ||
checkmark | ||
inputmode | ||
datetype | ||
describedby | ||
noreferrer | ||
noopener | ||
lede | ||
nbsp | ||
httpstat | ||
prestart | ||
pagesurvey | ||
Pagesub | ||
ALLOWALL | ||
cflinuxfs | ||
buildpack | ||
buildpacks | ||
webfonts | ||
hkshshslhshjksh | ||
kjgljjlhkhgljgjh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
inglés | ||
enero | ||
Aplicar | ||
beneficio | ||
beneficios | ||
buscador | ||
discapacidad | ||
jubilacion | ||
suma | ||
muerte | ||
elegible | ||
resultados | ||
selecciónes | ||
revisar | ||
casada | ||
Hija |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usagov | ||
uswds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.