Docs: alpha-gate@0.1.0 is on npm — drop the not-yet-published note #11
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: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npx biome check . | |
| - run: npm run typecheck # both tsconfigs: the Workers app AND the deploy CLI | |
| - run: npm test | |
| - name: shellcheck | |
| # -x follows the sourced deploy/lib/statedir.sh (via the shellcheck source= directives) | |
| run: shellcheck -x deploy/*.sh deploy/lib/*.sh ./*.sh |