Skip to content

1.0.6

1.0.6 #18

Workflow file for this run

name: CI
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- name: Lint
run: npm run lint
- name: Check types
run: npm run check-types
- name: Tests
run: npm run test
- name: Build
run: npm run build