-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (44 loc) · 1.25 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Tests
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
env:
WORKERS: 4
BEE_API_URL: 'http://127.0.0.1:1633'
jobs:
node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
id: cache-npm
with:
path: node_modules
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-${{ matrix.node }}-${{ env.cache-name }}-
${{ runner.OS }}-node-${{ matrix.node }}-
- name: Install npm deps
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm ci && npm ci
- name: Run FDP Play
run: npm install -g @fairdatasociety/fdp-play && npx fdp-play start --workers $WORKERS -d
- name: Run tests
run: npm run test
- name: Print message on failure
if: failure()
run: docker logs fdp-play-queen