-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.25 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Test
on:
push:
branches:
- main
paths-ignore:
- "**/coverage.svg"
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [lts/*]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: |
yarn install --immutable
curl -L https://foundry.paradigm.xyz | bash
source /home/runner/.bashrc
echo "PATH=$PATH:/home/runner/.config/.foundry/bin" >> $GITHUB_ENV
/home/runner/.config/.foundry/bin/foundryup
git submodule init
- name: Run hardhat node, deploy contracts (& generate contracts typescript output)
run: yarn chain & yarn deploy
env:
ALCHEMY_API_KEY: ${{secrets.ALCHEMY_API_KEY}}
ETHERSCAN_API_KEY: ${{secrets.ETHERSCAN_API_KEY}}
- name: Run tests
run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
format: lcov
files: packages/foundry/lcov.info