Skip to content

Bring your own window #5

Bring your own window

Bring your own window #5

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest] # skip windows-latest (fails lint) and ubuntu-latest (fails test)
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: yarn lint
- run: yarn test