Skip to content

ci: add release workflow and expand CI coverage #131

ci: add release workflow and expand CI coverage

ci: add release workflow and expand CI coverage #131

Workflow file for this run

name: CI
on:
push:
branches: [master, feature/**]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Typecheck
run: npx tsc --noEmit
- name: Library tests
run: npx vitest run
- name: Plugin tests
run: npx vitest run
working-directory: extensions/drawbridge
- name: Build
run: npm run build