From ac27ac288179bb2c2086bd58e6a349cf03ef07ab Mon Sep 17 00:00:00 2001 From: Sasha Date: Wed, 8 Nov 2023 16:32:15 +0100 Subject: [PATCH] fix: add pipeline checkout and other acitons --- .github/workflows/push.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d06c1b7..6a51fa1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -24,13 +24,19 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Checkout to waku-frontend + uses: actions/checkout@v3 + with: + repository: waku-org/waku-frontend + - name: Setup node.js uses: actions/setup-node@v3 with: node-version: 18 + registry-url: "https://registry.npmjs.org" - name: Setup npm - run: npm ci + uses: bahmutov/npm-install@v1 - name: Artefact build run: npm run build