blob: d34708f73bd22f401d08519adadf48c214f8f227 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: Main
on: push
jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with: { node-version: "${{ matrix.node }}" }
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn lint
- run: yarn test
|