tests: reorganize packages (#7)

* tests: reorganize testing packages

* gitignore and minor changes
This commit is contained in:
Federico Kunze
2021-05-11 07:54:55 -04:00
committed by GitHub
parent 117342b1b3
commit 96cad7de9c
115 changed files with 68 additions and 80 deletions
@@ -0,0 +1,28 @@
name: contracts
on:
push:
branches: master
pull_request:
branches: '*'
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install
run: yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: coverage
continue-on-error: true
run: yarn coverage
env:
CI: true