chore(deps): bump socket.io-parser from 4.2.4 to 4.2.6 in the npm_and… #48
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 Site | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build the Site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4.2.0 | |
| - name: Setup the pnpm Package Manager | |
| uses: pnpm/action-setup@v4.0.0 | |
| with: | |
| version: 10 | |
| - name: Install the Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build the Static Assets | |
| run: pnpm build --preset github_pages | |
| - name: Upload Build Assets | |
| uses: actions/upload-pages-artifact@v3.0.1 | |
| with: | |
| path: ./.output/public | |
| deploy: | |
| name: Deploy the Site | |
| needs: build | |
| permissions: | |
| pages: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4.0.5 |