build: improve package.json and adapted workflows #8
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: 'Contracts' | |
env: | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
working-directory: . | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'contracts/**' | |
- '.github/workflows/contracts-*.yml' | |
jobs: | |
tests: | |
runs-on: 'ubuntu-latest' | |
defaults: | |
run: | |
working-directory: ${{env.working-directory}} | |
steps: | |
- name: 'Check out the repo' | |
uses: 'actions/checkout@v3' | |
- name: 'Install Node.js' | |
uses: 'actions/setup-node@v3' | |
with: | |
cache: 'yarn' | |
node-version: 16 | |
- name: 'Install general dependencies' | |
run: 'yarn install' | |
- name: 'Install contracts dependencies' | |
run: 'yarn install' | |
working-directory: contracts | |
- name: 'Lint the contracts' | |
run: 'yarn lint:sol' | |
working-directory: contracts | |
- name: 'Build the contracts' | |
run: 'yarn build' | |
working-directory: contracts | |
- name: 'Test the contracts and generate the coverage report' | |
run: 'yarn coverage' | |
working-directory: contracts |