Skip to content

Docs: alpha-gate@0.1.0 is on npm — drop the not-yet-published note #11

Docs: alpha-gate@0.1.0 is on npm — drop the not-yet-published note

Docs: alpha-gate@0.1.0 is on npm — drop the not-yet-published note #11

Workflow file for this run

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