Skip to content

Reflect the change from master to main #13

Reflect the change from master to main

Reflect the change from master to main #13

Workflow file for this run

name: Build
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
name: Lint and tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 12
- 14
- 16
architecture:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn test