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 70d6321 commit 232de67Copy full SHA for 232de67
.github/workflows/tests.yml
@@ -1,9 +1,9 @@
1
-name: Continuous Integration
+name: Tests
2
3
on: [push]
4
5
jobs:
6
- tests:
+ node:
7
runs-on: ubuntu-latest
8
9
strategy:
@@ -28,3 +28,25 @@ jobs:
28
env:
29
TEST_ARANGODB_URL: http://arangodb:8529
30
CI: true
31
+
32
+ web:
33
+ runs-on: ubuntu-latest
34
35
+ strategy:
36
+ matrix:
37
+ arangodb-version: [3.5, 3.6, 3.7]
38
39
+ container:
40
+ image: buildkite/puppeteer:latest
41
42
+ services:
43
+ arangodb:
44
+ image: arangodb:${{ matrix.arangodb-version }}
45
+ env:
46
+ ARANGO_NO_AUTH: 1
47
48
+ steps:
49
+ - uses: actions/checkout@v2
50
+ - run: npm install -g npm@7
51
+ - run: npm install
52
+ - run: node smoke-test.js
.github/workflows/web.yml
0 commit comments