We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd2c7d9 commit b518253Copy full SHA for b518253
1 file changed
.github/workflows/nodejs.yml
@@ -0,0 +1,32 @@
1
+name: Node.js CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ strategy:
11
+ matrix:
12
+ node-version: [10.x]
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: getong/elasticsearch-action@v1
17
+ with:
18
+ elasticsearch version: '6.5.8'
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v1
21
22
+ node-version: ${{ matrix.node-version }}
23
+ - run: npm install
24
+ - run: PATH=${PATH}:\.\/node_modules\/\.bin/
25
+ - run: npm run lint
26
+ - run: npm test
27
+ # - run: codecov
28
+ - run: npm run build
29
+ - run: npm run build -- --dist
30
+ - run: npm install --prefix integration
31
+ env:
32
+ CI: true
0 commit comments