2020-02-09 00:21:39 -05:00
|
|
|
name: build-test
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-22 08:04:56 -04:00
|
|
|
- main
|
2020-02-09 00:21:39 -05:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2019-07-11 16:16:54 -04:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-25 22:59:14 -04:00
|
|
|
steps:
|
2021-11-08 05:28:08 -05:00
|
|
|
- name: Checkout
|
2022-03-31 15:29:52 -04:00
|
|
|
uses: actions/checkout@v3
|
2019-07-23 13:24:08 -04:00
|
|
|
|
2022-02-22 10:25:23 -05:00
|
|
|
- name: Setup node 16
|
2022-03-31 15:29:52 -04:00
|
|
|
uses: actions/setup-node@v3
|
2021-11-08 05:28:08 -05:00
|
|
|
with:
|
2022-02-22 10:25:23 -05:00
|
|
|
node-version: 16
|
2021-12-20 11:24:01 -05:00
|
|
|
cache: npm
|
2019-07-11 16:16:54 -04:00
|
|
|
|
2022-02-09 06:59:04 -05:00
|
|
|
- name: npm ci
|
|
|
|
run: npm ci
|
2019-07-11 16:16:54 -04:00
|
|
|
|
2021-11-08 05:28:08 -05:00
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
2019-07-11 16:16:54 -04:00
|
|
|
|
2021-11-08 05:28:08 -05:00
|
|
|
- name: npm test
|
|
|
|
run: npm test
|
2020-02-09 14:41:37 -05:00
|
|
|
|
2021-11-08 05:28:08 -05:00
|
|
|
- name: audit packages
|
|
|
|
run: npm audit --audit-level=high
|
|
|
|
if: matrix.operating-system == 'ubuntu-latest'
|