feat(CNSU-2023-2025): start working on CNSU 2023-2025 (#150) #132
This file contains hidden or 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
| name: Deploy SPA to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js 16.15.1 | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.15.1' | |
| - name: Build π¨ | |
| run: | | |
| npm install --legacy-peer-deps | |
| npm run build | |
| - name: Deploy π | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: build/ |