Removes web3 dependency. Using ethersjs in the html tools. Refactors. #214
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/CD Using Github actions workflow | |
on: [push, pull_request] | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Node & Npm Version | |
run: | | |
node -v | |
npm -v | |
- name: Install 🔧 | |
run: npm ci | |
- name: Test 🚨 | |
run: npm test |