fix(security-issues): remove web3 and @metamask/eth-sig-util deps, re… #113
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code into workspace directory | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.x' | |
- name: Install yarn | |
run: npm install --global yarn | |
- name: Install dependency | |
run: yarn install | |
- name: CI | |
run: yarn run ci-pipeline |