Skip to content

v0.7.0

v0.7.0 #156

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request: {}
jobs:
checks:
name: Pre-merge Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup
run: npm ci
- name: Format
run: npm run format:check
- name: Build
run: npm run build
- name: Test
run: npm test