2023-03-29 06:28:09 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
2023-03-29 07:21:46 +00:00
|
|
|
- "**.sol"
|
|
|
|
- "scripts/**.ts"
|
|
|
|
- "test/**.ts"
|
|
|
|
- "hardhat.config.ts"
|
|
|
|
- "package.json"
|
|
|
|
- ".github/workflows/ci.yml"
|
2023-03-29 06:28:09 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
2023-03-29 07:21:46 +00:00
|
|
|
- "**.sol"
|
|
|
|
- "scripts/**.ts"
|
|
|
|
- "test/**.ts"
|
|
|
|
- "hardhat.config.ts"
|
|
|
|
- "package.json"
|
|
|
|
- ".github/workflows/ci.yml"
|
2023-03-29 06:28:09 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-03-29 07:21:46 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Install Foundry
|
|
|
|
uses: foundry-rs/foundry-toolchain@v1
|
|
|
|
with:
|
|
|
|
version: nightly
|
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16
|
2023-03-29 07:21:46 +00:00
|
|
|
cache: "yarn"
|
2023-03-29 06:28:09 +00:00
|
|
|
- id: dependencies
|
|
|
|
run: yarn install
|
|
|
|
|
|
|
|
- id: lint
|
|
|
|
run: yarn lint
|
|
|
|
|
|
|
|
- id: test
|
|
|
|
run: yarn test
|
|
|
|
|
|
|
|
- id: coverage
|
|
|
|
run: yarn coverage
|
|
|
|
|
|
|
|
- id: upload-coverage
|
|
|
|
# run only in pull requests
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
uses: zgosalvez/github-actions-report-lcov@v1
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2023-03-29 08:47:14 +00:00
|
|
|
coverage-files: lcov.info
|
2023-03-29 07:21:46 +00:00
|
|
|
artifact-name: code-coverage-report
|