From 903738be0af4923a268acc344285cb11e40789fe Mon Sep 17 00:00:00 2001 From: Danielo Rodriguez Date: Sat, 21 Oct 2023 13:08:23 +0200 Subject: [PATCH] fix: pipelines install --- .github/workflows/pull-request.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8f9b54da..a5ed15a4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -7,5 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + cache: "npm" + + - run: npm install - name: Build and Test run: npm run build && npm run test