-
Notifications
You must be signed in to change notification settings - Fork 65
63 lines (60 loc) · 1.3 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
# Allow manually triggering tests
workflow_dispatch:
branches:
- master
jobs:
test:
name: Node.js ${{ matrix.node }} + mongoDB ${{ matrix.mongodb }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 18
- 20
- 22
mongodb:
- 4.4
- 5.0
- 6.0
- 7.0
services:
mongodb:
image: mongo:${{ matrix.mongodb }}
ports:
- 27017:27017
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test-cover
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: node-${{ matrix.node }}-mongodb-${{ matrix.mongodb }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Submit coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true