We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4cf5c commit 359f824Copy full SHA for 359f824
.github/workflows/nodejs.yml
@@ -8,9 +8,10 @@ jobs:
8
9
strategy:
10
matrix:
11
- node-version: [12.x, 14.x]
+ node-version: [12.x, 15.x]
12
mongodb-version: [4.0, 4.2]
13
elasticsearch-version: ['7.9.3']
14
+ rabbitmq-version: ['3.8.2-management-alpine']
15
16
steps:
17
- uses: actions/checkout@v1
@@ -37,11 +38,19 @@ jobs:
37
38
host node port: 9300
39
node port: 9300
40
discovery type: 'single-node'
- - name: npm install, build, and test
41
+ - name: npm install
42
run: |
43
npm install
44
+ env:
45
+ CI: true
46
+ - name: npm run build
47
+ run: |
48
npm run build --if-present
49
npm run lint
50
51
52
+ - name: npm test
53
54
npm test
55
env:
56
CI: true
0 commit comments