Skip to content

[VEN-1689] Fix hardhat compile download issue #145

[VEN-1689] Fix hardhat compile download issue

[VEN-1689] Fix hardhat compile download issue #145

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Venus-Protocol
on:
push:
branches: [master, develop]
pull_request:
branches: [main, develop]
jobs:
test:
name: Test
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Clear
run: docker system prune -f -a --volumes
- name: Build docker
run: docker build -t venus:${GITHUB_SHA::7} .
- name: Run tests
run: docker run --name ${GITHUB_SHA::7} venus:${GITHUB_SHA::7} yarn test
- name: Clear
run: docker rm ${GITHUB_SHA::7}
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 18
cache: "yarn"
- name: Install dependencies
# Hack to get around failing "ethereumjs-abi The remote archive doesn't match the expected checksum" error
run: YARN_CHECKSUM_BEHAVIOR=update yarn
- name: Lint solidity and ts files
run: yarn lint
docgen:
name: Docgen
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 18
cache: "yarn"
- name: Install dependencies
# Hack to get around failing "ethereumjs-abi The remote archive doesn't match the expected checksum" error
run: YARN_CHECKSUM_BEHAVIOR=update yarn
- name: Lint soliditidy and ts files
run: yarn docgen