Skip to content

fix: octokit missing during semantic release #34

fix: octokit missing during semantic release

fix: octokit missing during semantic release #34

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