Skip to content

3.2.0

3.2.0 #23

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 12.22
os:
- ubuntu-latest
- windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check types
run: npm run lint:types
- name: Test
run: npm test