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

44 lines
871 B
YAML
Raw Normal View History

2020-07-12 01:55:31 +08:00
name: Test
on:
push:
branches:
- master
2020-07-12 01:55:31 +08:00
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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
2020-07-12 01:55:31 +08:00
- name: Setup Node
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
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@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4