Skip to content

Merge pull request #22 from unchain-tech/feature/upgrade-solidity-ver… #8

Merge pull request #22 from unchain-tech/feature/upgrade-solidity-ver…

Merge pull request #22 from unchain-tech/feature/upgrade-solidity-ver… #8

Workflow file for this run

name: CI
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- uses: actions/cache@v3
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --immutable
check:
runs-on: ubuntu-latest
needs: setup
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: lint
run: yarn lint
- name: solhint
run: yarn workspace contract solhint
- name: format
run: yarn prettier:check
contract-test:
runs-on: ubuntu-latest
needs: [setup, check]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: integration_test
run: yarn workspace contract test