[VEN-1931] vip and simulations for chaos labs #353
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" | |
env: | |
DOTENV_CONFIG_PATH: "./.env.example" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v3" | |
- name: "Install Node.js" | |
uses: "actions/setup-node@v3" | |
with: | |
cache: "yarn" | |
node-version: "lts/*" | |
- name: "Install the dependencies" | |
run: "yarn install --immutable" | |
- name: "Lint the code" | |
run: "yarn lint" | |
- name: "Add lint summary" | |
run: | | |
echo "## Lint results" >> $GITHUB_STEP_SUMMARY | |
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: "yarn" | |
- name: Install deps | |
run: yarn | |
- name: Install solidity | |
run: yarn global add [email protected] | |
- name: Run hardhat compile and tests coverage | |
run: | | |
yarn hardhat compile && yarn hardhat test |