2020-07-14 19:10:32 +08:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
|
|
|
|
|
|
|
steps:
|
2020-09-28 14:00:27 +08:00
|
|
|
- uses: actions/checkout@v2.3.3
|
2020-07-14 19:10:32 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2020-10-05 13:56:29 +08:00
|
|
|
uses: actions/setup-node@v2.1.2
|
2020-07-14 19:10:32 +08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn build:packages
|
|
|
|
- run: yarn audit-ci
|
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
|
|
|
|
|
|
|
steps:
|
2020-09-28 14:00:27 +08:00
|
|
|
- uses: actions/checkout@v2.3.3
|
2020-07-14 19:10:32 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2020-10-05 13:56:29 +08:00
|
|
|
uses: actions/setup-node@v2.1.2
|
2020-07-14 19:10:32 +08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn build:packages
|
|
|
|
- run: yarn lint
|
|
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [10.x, 12.x, 14.x]
|
|
|
|
|
|
|
|
steps:
|
2020-09-28 14:00:27 +08:00
|
|
|
- uses: actions/checkout@v2.3.3
|
2020-07-14 19:10:32 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2020-10-05 13:56:29 +08:00
|
|
|
uses: actions/setup-node@v2.1.2
|
2020-07-14 19:10:32 +08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn build:packages
|
|
|
|
- run: yarn test
|