Skip to content

Update README.md

Update README.md #11

name: Chanterelle example tests
on:
push:
branches:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: build
run: |
npm install
npm run build-contracts
npx spago build
working-directory: chanterelle/example
- name: test
run: |
docker run --rm -d -it -p 8545:8545 foamspace/cliquebait:latest
sleep 2m
npx spago test
working-directory: chanterelle/example