diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 427c1101..c6e0400f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,12 +7,20 @@ on: branches: [dev, master, main, wrapped-assets] workflow_dispatch: +env: + MAINNET_NODE: ${{ secrets.MAINNET_NODE }} + GOERLI_NODE: ${{ secrets.GOERLI_NODE }} + POLYGON_NODE: ${{ secrets.POLYGON_NODE }} + jobs: - build: + coverage: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + submodules: recursive + fetch-depth: 0 - name: Setup NodeJS 18 uses: actions/setup-node@v2 @@ -22,9 +30,6 @@ jobs: - name: Show NodeJS version run: npm --version - - name: Checkout submodules - run: git submodule update --init --recursive - - name: Install Project Dependencies run: npm install