Skip to content

Commit 04261ee

Browse files
committed
updated ci
1 parent 580a258 commit 04261ee

File tree

3 files changed

+37
-18
lines changed

3 files changed

+37
-18
lines changed

.github/workflows/CI.yaml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,4 @@ jobs:
1818
node-version: '20'
1919
- run: yarn install
2020
- run: yarn compile
21-
- run: yarn test
22-
test-coverage:
23-
name: Test Contracts Coverage
24-
runs-on: ubuntu-latest
25-
26-
steps:
27-
- uses: actions/checkout@v2
28-
- uses: actions/setup-node@v2-beta
29-
with:
30-
node-version: '20'
31-
- run: yarn install
32-
- run: yarn compile
33-
- run: yarn coverage
34-
- uses: coverallsapp/github-action@v1.1.2
35-
with:
36-
github-token: ${{ secrets.GITHUB_TOKEN }}
21+
- run: yarn test

.github/workflows/Nightly.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Nightly
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
jobs:
8+
test-contracts:
9+
name: Test Contracts
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2-beta
15+
with:
16+
node-version: '20'
17+
- run: yarn install
18+
- run: yarn compile
19+
- run: yarn test
20+
test-coverage:
21+
name: Test Contracts Coverage
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: actions/setup-node@v2-beta
27+
with:
28+
node-version: '20'
29+
- run: yarn install
30+
- run: yarn compile
31+
- run: yarn coverage
32+
- uses: coverallsapp/github-action@v1.1.2
33+
with:
34+
github-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ avalanche:
6969
proxyAdmin: 0x5396479b65ed39360Ba6C16f6D7c9fd357674534
7070
geyserRegistry: 0x60156bB86e9125639c624712a360FD3AbBb52421
7171
geysers:
72-
- poolRef: "PNG-AVAX-ETH-AMPL (The great geysir V1)"
73-
deployment: 0x26645e8513B1D20aDb729E7114eDfA930D411720
72+
# - poolRef: "PNG-AVAX-ETH-AMPL (The great geysir V1)"
73+
# deployment: 0x26645e8513B1D20aDb729E7114eDfA930D411720
7474
externalVaultFactoriesWhitelisted: [ ]
7575
```
7676

0 commit comments

Comments
 (0)