Skip to content

Refactor addSchemas() to utilise async #42

Refactor addSchemas() to utilise async

Refactor addSchemas() to utilise async #42

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- run: npm run typecheck
- run: npm run stylecheck
- run: npm run lint
test:
strategy:
matrix:
node-version:
- lts/*
- latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm run test