Skip to content

[VEN-2806]: Chaos lab recommendation, September 12, 2024 #2329

[VEN-2806]: Chaos lab recommendation, September 12, 2024

[VEN-2806]: Chaos lab recommendation, September 12, 2024 #2329

Workflow file for this run

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: Code compiles
run: yarn tsc --noEmit
- 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: Run hardhat compile and tests coverage
run: |
yarn hardhat compile && yarn hardhat test