Skip to content

update: Exchange test #18

update: Exchange test

update: Exchange test #18

name: Test Smart Contracts
on:
push:
paths:
- 'contracts/**'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: 'contracts/package-lock.json'
- run: npm install --prefix contracts/
- run: npm run build --prefix contracts/
- run: npm run test --prefix contracts/