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 50dd8d4 commit b03247dCopy full SHA for b03247d
.github/workflows/ci.yml
@@ -7,6 +7,7 @@ jobs:
7
matrix:
8
arango-image: ['arangodb:3.8', 'arangodb:3.11', 'arangodb:3.12']
9
node-version: [18.x, 20.x, 22.x]
10
+ language-option: ['--icu-language=en_US', '--default-language=en_US']
11
steps:
12
- uses: actions/checkout@v2
13
- name: Use Node.js ${{ matrix.node-version }}
@@ -15,7 +16,7 @@ jobs:
15
16
node-version: ${{ matrix.node-version }}
17
- run:
18
docker run --name arangodb -p 127.0.0.1:8529:8529 -d -e ARANGO_NO_AUTH=1 -e LANG=en_US ${{
- matrix.arango-image }}
19
+ matrix.arango-image }} ${{matrix.language-option}}
20
- run: timeout 10 docker logs --follow arangodb || true # wait until arangodb is started
21
- run: curl -L http://localhost:8529/_api/version
22
- run: npm ci
0 commit comments