2020-07-12 01:55:31 +08:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "*"
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node
|
2021-10-13 23:09:13 +08:00
|
|
|
uses: actions/setup-node@v1
|
2020-07-12 01:55:31 +08:00
|
|
|
with:
|
2022-07-06 21:16:10 +08:00
|
|
|
node-version: "12.x"
|
2021-10-13 23:09:13 +08:00
|
|
|
|
2020-07-12 01:55:31 +08:00
|
|
|
- name: Install & Test
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm run test
|
2020-07-23 01:56:10 +08:00
|
|
|
|
2022-09-06 15:09:45 +08:00
|
|
|
- name: Run Prettier
|
|
|
|
run: |
|
|
|
|
npm run prettier:check:ci
|
|
|
|
|
2020-07-23 01:56:10 +08:00
|
|
|
- name: Code Coverage
|
|
|
|
uses: codecov/codecov-action@v1
|