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

44 lines
727 B
YAML
Raw Normal View History

2020-07-12 01:55:31 +08:00
name: Test
on:
push:
branches:
- "*"
pull_request:
branches:
- master
permissions: read-all
2020-07-12 01:55:31 +08:00
jobs:
build:
name: Perform tests
2020-07-12 01:55:31 +08:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
2020-07-12 01:55:31 +08:00
steps:
- uses: actions/checkout@v3
2020-07-12 01:55:31 +08:00
- name: Setup Node
uses: actions/setup-node@v3
2020-07-12 01:55:31 +08:00
with:
node-version: ${{ matrix.node-version }}
cache: npm
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 ESLint
run: |
npm run lint
- name: Run Prettier
run: |
2022-09-16 18:55:35 +08:00
npm run format:check
- name: Code Coverage
uses: codecov/codecov-action@v3