WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Merge pull request #642 from VenusProtocol/feat/vip-325 #4059

Merge pull request #642 from VenusProtocol/feat/vip-325

Merge pull request #642 from VenusProtocol/feat/vip-325 #4059

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@v4
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@v4
with:
node-version: 20
cache: "yarn"
- name: Install deps
run: yarn
- name: Run hardhat compile and tests coverage
run: |
yarn hardhat compile && yarn hardhat test