Skip to content

Merge pull request #6 from Open-Attestation/chore/use-ethers-v5-sub-m… #33

Merge pull request #6 from Open-Attestation/chore/use-ethers-v5-sub-m…

Merge pull request #6 from Open-Attestation/chore/use-ethers-v5-sub-m… #33

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install Packages
# there's a problem with ganache-core using a very old version of ethereumjs-abi which fails on git checkout with ssh reasons
run: npm ci
- name: Check Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build