Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

[feat] implement and prove allowance mechanism for ERC5725 #63

[feat] implement and prove allowance mechanism for ERC5725

[feat] implement and prove allowance mechanism for ERC5725 #63

Workflow file for this run

name: lint & test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
node: ['16.x']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g yarn
- id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ matrix.os }}-yarn-
- run: yarn
- run: yarn lint:ci
- run: yarn test:ci