-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master' for 5.0.0 release
- Loading branch information
Showing
719 changed files
with
14,393 additions
and
14,584 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
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,16 +1,16 @@ | ||
name: AutomatedUpgrade | ||
name: AutomatedUpdate | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, synchronize] | ||
paths: | ||
- scripts/upgrade-pwa.js | ||
- scripts/update-pwa.js | ||
schedule: | ||
- cron: '0 0 * * 1' | ||
|
||
env: | ||
NODE_VERSION: 16.16.0 | ||
NODE_VERSION: 18.16.0 | ||
|
||
jobs: | ||
CancelPrevious: | ||
|
@@ -23,7 +23,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
AutomatedUpgrade: | ||
AutomatedUpdate: | ||
needs: [CancelPrevious] | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
|
@@ -45,25 +45,25 @@ jobs: | |
node-version: ${{ env.NODE_VERSION }} | ||
cache: npm | ||
|
||
- name: Create Upgrade Branch | ||
- name: Create Update Branch | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub CI" | ||
git switch -c upgrade/automated-upgrade | ||
git switch -c update/automated-update | ||
- name: Run Upgrade Script | ||
run: node scripts/upgrade-pwa | ||
- name: Run Update Script | ||
run: node scripts/update-pwa | ||
|
||
- name: Run Automated Fixes | ||
run: | | ||
npm run lint -- --fix | ||
npm run format | ||
git add . | ||
git commit -m "chore: post upgrade fixes" --allow-empty | ||
git commit -m "chore: post update fixes" --allow-empty | ||
- name: Run Tests | ||
run: npm run test | ||
|
||
- name: Push Upgrade Branch | ||
- name: Push Update Branch | ||
if: always() | ||
run: git push --force origin upgrade/automated-upgrade | ||
run: git push --force origin update/automated-update |
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
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 |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
*.properties | ||
*.crt | ||
*.key | ||
*.lua | ||
.*ignore | ||
.husky | ||
.gitattributes | ||
|
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
Oops, something went wrong.