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.
2 parents db97a1d + 336908f commit b3eced3Copy full SHA for b3eced3
.github/workflows/CI.yml
@@ -0,0 +1,33 @@
1
+name: Testing the e2e test suites
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - develop
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ node-version: [8.x, 10.x, 12.x]
19
20
+ steps:
21
+ - uses: actions/checkout@v1
22
+ - name: Use Node.js ${{ matrix.node-version }}
23
+ uses: actions/setup-node@v1
24
+ with:
25
+ node-version: ${{ matrix.node-version }}
26
+ - name: bootstrap
27
+ run: npm run bootstrap
28
+ - name: Build
29
+ run: npm run build
30
+ - name: linting
31
+ run: npm run lint
32
+ - name: end to end
33
+ run: npm run test:e2e
0 commit comments