2020-08-06 19:17:38 +00:00
|
|
|
name: Check
|
2020-07-24 23:49:07 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2020-08-08 20:46:34 +00:00
|
|
|
workflow_dispatch:
|
2020-07-24 23:49:07 +00:00
|
|
|
jobs:
|
2020-08-07 08:56:27 +00:00
|
|
|
check:
|
2020-07-24 23:49:07 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-07-30 04:59:24 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm ci
|
2020-08-06 19:17:38 +00:00
|
|
|
- name: Run check
|
|
|
|
run: npm run check
|
2020-07-30 04:59:24 +00:00
|
|
|
- name: Run test
|
|
|
|
run: npm t
|
2020-09-18 14:39:31 +00:00
|
|
|
- name: Run lint
|
|
|
|
run: npm run lint
|