2020-05-19 14:25:54 +01:00
|
|
|
name: build-test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-22 13:12:24 +01:00
|
|
|
- main
|
2020-05-19 14:25:54 +01:00
|
|
|
- releases/*
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-06-29 19:56:37 +01:00
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
2020-05-19 14:25:54 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node 12
|
2020-12-15 10:38:55 +00:00
|
|
|
uses: actions/setup-node@v2
|
2020-05-19 14:25:54 +01:00
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm run format-check
|
|
|
|
- run: npm test
|
|
|
|
- name: Verify no unstaged changes
|
|
|
|
if: runner.os != 'windows'
|
|
|
|
run: __tests__/verify-no-unstaged-changes.sh
|