-
-
Notifications
You must be signed in to change notification settings - Fork 153
41 lines (32 loc) · 887 Bytes
/
nodejs.yml
File metadata and controls
41 lines (32 loc) · 887 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
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
show-progress: false
- name: Use LTS Node.js
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: lts/*
- name: Install packages
run: npm install
- 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@v3