Skip to content

Commit

Permalink
service:node -> actions/setup-node
Browse files Browse the repository at this point in the history
  • Loading branch information
pluma4345 committed Sep 1, 2022
1 parent c9a2d4d commit e98b7ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
node-version: [14, 16, 18]
arangodb-version: [3.8, 3.9]

container:
image: node:${{ matrix.node-version }}

services:
arangodb:
image: arangodb:${{ matrix.arangodb-version }}
Expand All @@ -26,6 +23,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: apt-get update && apt-get install jq -y
- run: npm install -g npm@8
- run: npm install
Expand All @@ -44,11 +44,11 @@ jobs:
node-version: [14, 16, 18]
arangodb-version: [3.8, 3.9]

container:
image: node:${{ matrix.node-version }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: apt-get update && apt-get install jq -y
- run: npm install -g npm@8
- run: npm install
Expand Down

0 comments on commit e98b7ba

Please sign in to comment.