Skip to content

update documentation #319

update documentation

update documentation #319

Workflow file for this run

name: Build and test contracts
on:
workflow_dispatch:
push:
paths:
- 'contracts/**'
env:
NODE_VERSION: 16.x
jobs:
test-contracts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
run: |
git config --global url."https://".insteadOf git://
yarn
- name: Run tests
run: yarn test:contracts