add room override #18
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: Autodeploy branch | |
| on: | |
| push: | |
| branches: | |
| - deploy | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ vars.NODE_VERSION }} | |
| cache: "npm" | |
| - name: Install node dependencies | |
| run: npm ci | |
| - name: Checks types | |
| run: npm run typecheck | |
| - name: Run build | |
| run: npm run build | |
| - name: Archive build artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: built-site | |
| path: | | |
| build/client | |
| !build/client/latest.json |