feat: add ability to specify start times for specific tokens #68
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: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
tests: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
needs: [] | |
steps: | |
- name: "Checkout Repo" | |
uses: actions/checkout@master | |
- name: "Install Node" | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
cache: "yarn" | |
- name: "Install JS Dependencies" | |
run: "yarn install --frozen-lockfile --dev" | |
- name: "Build" | |
run: "yarn prepare" | |
- name: "Run tests" | |
run: "yarn hardhat test" |