github-readme-stats/.github/workflows/test.yml

34 lines
519 B
YAML
Raw Normal View History

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
uses: actions/setup-node@v1
2020-07-12 01:55:31 +08:00
with:
node-version: "16.x"
2020-07-12 01:55:31 +08:00
- name: Install & Test
run: |
npm ci
2020-07-12 01:55:31 +08:00
npm run test
- name: Run Prettier
run: |
2022-09-16 18:55:35 +08:00
npm run format:check
- name: Code Coverage
uses: codecov/codecov-action@v1