2021-01-12 11:00:37 +08:00
|
|
|
name: Unit Test
|
2020-07-25 23:38:24 +08:00
|
|
|
|
2020-09-01 13:27:19 +08:00
|
|
|
on: pull_request
|
2020-07-25 23:38:24 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-01-12 11:00:37 +08:00
|
|
|
name: Unit Test
|
2020-07-25 23:38:24 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-08-03 18:07:29 +08:00
|
|
|
- name: Setup node
|
2020-12-31 11:12:52 +08:00
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '12'
|
2020-08-03 18:07:29 +08:00
|
|
|
- name: Install dependencies
|
2020-11-23 09:50:30 +08:00
|
|
|
run: yarn bootstrap
|
2020-08-04 10:49:49 +08:00
|
|
|
- name: Lint
|
|
|
|
run: yarn lint
|
2020-08-03 21:18:20 +08:00
|
|
|
- name: Test
|
|
|
|
run: yarn test
|