diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 436105c9..5f9bd14c 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -18,19 +18,4 @@ jobs: node-version: '20' - run: yarn install - run: yarn compile - - run: yarn test - test-coverage: - name: Test Contracts Coverage - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2-beta - with: - node-version: '20' - - run: yarn install - - run: yarn compile - - run: yarn coverage - - uses: coverallsapp/github-action@v1.1.2 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} + - run: yarn test \ No newline at end of file diff --git a/.github/workflows/Nightly.yaml b/.github/workflows/Nightly.yaml new file mode 100644 index 00000000..58a6d5a6 --- /dev/null +++ b/.github/workflows/Nightly.yaml @@ -0,0 +1,34 @@ +name: Nightly + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + test-contracts: + name: Test Contracts + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2-beta + with: + node-version: '20' + - run: yarn install + - run: yarn compile + - run: yarn test + test-coverage: + name: Test Contracts Coverage + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2-beta + with: + node-version: '20' + - run: yarn install + - run: yarn compile + - run: yarn coverage + - uses: coverallsapp/github-action@v1.1.2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 6ffcad3c..6b3b9e21 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ avalanche: proxyAdmin: 0x5396479b65ed39360Ba6C16f6D7c9fd357674534 geyserRegistry: 0x60156bB86e9125639c624712a360FD3AbBb52421 geysers: - - poolRef: "PNG-AVAX-ETH-AMPL (The great geysir V1)" - deployment: 0x26645e8513B1D20aDb729E7114eDfA930D411720 + # - poolRef: "PNG-AVAX-ETH-AMPL (The great geysir V1)" + # deployment: 0x26645e8513B1D20aDb729E7114eDfA930D411720 externalVaultFactoriesWhitelisted: [ ] ```