Skip to content

build: I am bad at typing #24

build: I am bad at typing

build: I am bad at typing #24

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CI: true
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [16]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Node.js ${{matrix.node-version}} on ${{matrix.os}}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- run: npm install
- name: Lint
run: npm run -s pretest
- name: Tests
run: npm run -s tests-only
- name: Coverage
run: npm run -s posttest