Skip to content

Commit

Permalink
add ArchivalNoticeModal
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushkh committed Dec 28, 2023
1 parent b5658b7 commit 8a7037a
Show file tree
Hide file tree
Showing 8 changed files with 34,549 additions and 11,964 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install && npm run build
- run: npm ci --legacy-peer-deps && npm run build
with:
node-version-file: '.nvmrc'
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install && npm run build
- run: npm ci --legacy-peer-deps && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: update-deps
on: create
jobs:
npm-update:
if: github.ref == 'refs/heads/main'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- run: npm update --dev
- run: git rm -r --cached .github
- run: rm -rf .github/
- uses: EndBug/add-and-commit@latest
with:
add: '.'
message: 'Update dependencies with "npm update"'
push: true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.13.0
Loading

0 comments on commit 8a7037a

Please sign in to comment.