Skip to content

Merge pull request #22 from Cherry/chore/typescript #60

Merge pull request #22 from Cherry/chore/typescript

Merge pull request #22 from Cherry/chore/typescript #60

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run check-types
- run: npm run build
- run: npm test