Skip to content

Improvements

Improvements #30

Workflow file for this run

name: TEST
on:
pull_request:
branches:
- dev
- next
- main
paths:
- src/**
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --ignore-scripts
- name: Unit Tests
run: |
BLOCKCHAIN_ENDPOINT=${{secrets.BLOCKCHAIN_ENDPOINT}} SEED_TEST_FUNDS=${{secrets.SEED_TEST_FUNDS}} SEED_TEST_FUNDS_PUBLIC=${{secrets.SEED_TEST_FUNDS_PUBLIC}} npm run test