Skip to content

CI

CI #27

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
env:
CI: 'true'
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Compile TypeScript
run: yarn compile
- name: Lint JS
run: yarn lint:js
- name: Test
run: yarn test