Merge branch 'docs/web' #22
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: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Checkout | |
| - uses: actions/setup-node@v3 | |
| name: Setup Node.js | |
| with: | |
| node-version: 22 | |
| - uses: pnpm/action-setup@v4 | |
| name: Setup PNPM | |
| with: | |
| # Skip the default install so we can do our own | |
| run_install: false | |
| - name: Install dependencies | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Format checking | |
| run: pnpm check | |
| - name: Build | |
| run: pnpm build | |
| - name: Test | |
| run: pnpm test |