Skip to content

payPerDeal fund function changed #182

payPerDeal fund function changed

payPerDeal fund function changed #182

Workflow file for this run

name: Node CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository 🛎️
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install 🔧
run: npm install
- name: Build 🔨
run: npm run build
- name: Test 🚨
run: npm test
env:
TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
TEST_PUBLIC_KEY: ${{ secrets.TEST_PUBLIC_KEY }}