Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Merge pull request #115 from argentlabs/feat/update-compiler #547

Merge pull request #115 from argentlabs/feat/update-compiler

Merge pull request #115 from argentlabs/feat/update-compiler #547

Workflow file for this run

name: Continuous integration
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Formatting
run: yarn format:check
- name: Compile
run: yarn hardhat compile
- name: Lint
run: yarn lint
- name: Start local node
run: ./bin/start-ci-node.sh
- name: Gas report
run: yarn gas:check
- name: Tests
run: yarn test