-
-
Notifications
You must be signed in to change notification settings - Fork 153
41 lines (32 loc) · 849 Bytes
/
nodejs.yml
File metadata and controls
41 lines (32 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Lint using ESLint and Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
show-progress: false
- name: Use LTS Node.js
uses: actions/setup-node@v5
with:
node-version: lts/*
- name: Install packages
run: npm ci
- name: Run lint
run: npm run lint
test:
name: Test
uses: pkgjs/action/.github/workflows/node-test.yaml@v0.1
with:
runs-on: ubuntu-latest, macos-latest, windows-latest
test-command: npm run tap -- --coverage-report=lcov
post-test-steps: |
- name: Coverage Report
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0