Skip to content

Commit fa34634

Browse files
committed
ci: add build/test workflow for GitHub Actions
1 parent 10df786 commit fa34634

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/nodejs.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: ci
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest]
10+
node-version: [14.x, 16.x, 18.x, 20.x]
11+
12+
runs-on: ${{ matrix.os }}
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: setup git
18+
if: matrix.os == 'windows-latest'
19+
run: |
20+
git config core.symlinks true
21+
git reset --hard
22+
23+
- name: ${{ matrix.os }} / Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
28+
- name: npm install, build, and test
29+
run: |
30+
npm i -g npm@9
31+
npm ci
32+
npm run test
33+
npm run debug
34+
npm run generate
35+
36+
- uses: codecov/codecov-action@v1
37+
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x'
38+
with:
39+
file: ./coverage/coverage.lcov
40+
name: codecov-umbrella
41+
fail_ci_if_error: false

0 commit comments

Comments
 (0)