Add Custom Metadata Support #157
This file contains hidden or 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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
node-version: [18.x] | |
go-version: ["1.22"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v4" | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- name: "Install the dependencies" | |
run: "npm install" | |
- name: Hardhat coverage | |
run: | | |
npx hardhat coverage | |
- name: "Run linter" | |
run: "npm run lint" |