Skip to content

temp: run CI on every push #1

temp: run CI on every push

temp: run CI on every push #1

Workflow file for this run

name: CI checks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: 'npm'
- run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint code
run: npm run lint:js
- name: Lint docs
run: npm run lint:eslint-docs
- name: Tests
run: npm run test
- name: Check that commit contains build artifacts
run: |
npm run build
git diff --exit-code || (echo "Error: changes detected after build." && exit 1)