Skip to content

Run CI jobs with LTS nodejs #42

Run CI jobs with LTS nodejs

Run CI jobs with LTS nodejs #42

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test