Skip to content

Fix GitHub workflow badges #27

Fix GitHub workflow badges

Fix GitHub workflow badges #27

Workflow file for this run

name: 'Build & Test'
on: [push, pull_request]
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Test
run: npm run test