Skip to content

test: add bundle smoke test #8

test: add bundle smoke test

test: add bundle smoke test #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint & Format check
run: npm run lint
- name: Unit tests
run: npm run test:coverage
- name: Build
run: npm run build