-
-
Notifications
You must be signed in to change notification settings - Fork 43
37 lines (34 loc) · 932 Bytes
/
test.yml
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
name: Test
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
strategy:
matrix:
os: [ ubuntu-22.04 ]
node: [ 16, 18, 20 ]
name: Test Nodejs v${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: chrvadala/github-actions/nodejs-test-library-action@v1
with:
NODE_VERSION: ${{ matrix.node }}
- name: Publish Coveralls
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-nodejs-v${{ matrix.node }}-${{ matrix.os }}
parallel: true
finish:
name: Finish
needs: build
runs-on: ubuntu-22.04
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true