Skip to content

CI: fix shellcheck findings (SC1091, SC2015) and follow sourced files #5

CI: fix shellcheck findings (SC1091, SC2015) and follow sourced files

CI: fix shellcheck findings (SC1091, SC2015) and follow sourced files #5

Workflow file for this run

name: CI
on:
push:
branches: [main, implementation]
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: npx tsc --noEmit
- 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