Merge pull request #642 from VenusProtocol/feat/vip-325 #4059
This file contains hidden or 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@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 |