test: raise depth for mining #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |