1
0
Fork 0
toolkit/.github/workflows/unit-tests.yml

52 lines
835 B
YAML
Raw Normal View History

name: toolkit-unit-tests
on:
2019-10-03 16:45:11 +00:00
push:
branches:
- main
2019-10-03 17:07:22 +00:00
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
name: Build
strategy:
matrix:
2020-05-27 14:32:54 +00:00
runs-on: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.runs-on }}
2019-07-26 03:00:31 +00:00
steps:
2019-07-26 03:08:57 +00:00
- name: Checkout
2020-01-14 15:48:34 +00:00
uses: actions/checkout@v2
2019-07-26 03:08:57 +00:00
- name: Set Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: npm install
- name: Bootstrap
run: npm run bootstrap
- name: Compile
run: npm run build
- name: npm test
run: npm test
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Lint
run: npm run lint
- name: Format
run: npm run format-check