-
Notifications
You must be signed in to change notification settings - Fork 16
50 lines (38 loc) · 1.15 KB
/
pr.yml
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
name: Check PR
on:
pull_request:
types: [opened, reopened, synchronize]
env:
HUSKY: 0
CI: true
ATTACH_ADDRESS_PROVIDER: "0x9ea7b04Da02a5373317D745c1571c84aaD03321D"
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
cache: "yarn"
node-version-file: ".nvmrc"
- name: Configure access to private npm packages
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run forge install
run: forge install
- name: Run forge unit tests
run: forge test --match-test test_U -vv
- name: Run forge integration tests
run: forge test --match-test _live_ --fork-url ${{ secrets.MAINNET_TESTS_FORK }} --chain-id 1337 -vv
- name: Perform checks
run: |
yarn typecheck:ci
yarn lint:ci
yarn prettier:ci