Skip to content

feat: optionally deploy config in get-bee command #1372

feat: optionally deploy config in get-bee command

feat: optionally deploy config in get-bee command #1372

Workflow file for this run

name: Node.js tests
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
env:
BEE_API_URL: 'http://localhost:1633'
BEE_PEER_API_URL: 'http://localhost:11633'
jobs:
node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install npm deps
run: npm ci && npm install -g @fairdatasociety/fdp-play
- name: Start fdp-play environment
run: npm run bee
- name: Tests
run: npm run test