2020-05-19 20:25:54 +07:00
|
|
|
name: build-test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2021-12-30 21:05:57 +07:00
|
|
|
- '**.md'
|
|
|
|
push:
|
2020-05-19 20:25:54 +07:00
|
|
|
branches:
|
2020-07-22 19:12:24 +07:00
|
|
|
- main
|
2020-05-19 20:25:54 +07:00
|
|
|
- releases/*
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2021-12-30 21:05:57 +07:00
|
|
|
|
2020-05-19 20:25:54 +07:00
|
|
|
jobs:
|
|
|
|
build:
|
2021-01-21 02:15:22 +07:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-19 20:25:54 +07:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-01-21 02:15:22 +07:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-05-19 20:25:54 +07:00
|
|
|
steps:
|
2022-04-01 15:13:52 +07:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-01 02:14:07 +07:00
|
|
|
- name: Setup Node 16.x
|
|
|
|
uses: actions/setup-node@v3
|
2020-05-19 20:25:54 +07:00
|
|
|
with:
|
2022-02-22 15:28:24 +07:00
|
|
|
node-version: 16.x
|
2021-12-30 21:05:57 +07:00
|
|
|
cache: npm
|
2020-05-19 20:25:54 +07:00
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm run format-check
|
2022-04-01 02:14:07 +07:00
|
|
|
- run: npm test
|