feat(billboard): allow to set startedAt on mintBoard #277
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: Lint & Test | |
on: | |
push: | |
branches-ignore: | |
- master | |
- main | |
- develop | |
jobs: | |
run-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v2 | |
- name: Install dev dependencies | |
run: npm install | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run lint check | |
run: npm run lint:check | |
- name: Env | |
run: cp .env.local.example .env.local | |
- name: Built | |
run: make build | |
- name: Run tests | |
run: FOUNDRY_PROFILE=ci make gas-report |