From 12fa6d85db736cd9d154b75b0bc9b5245a2b0052 Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Mon, 10 Jun 2024 14:44:17 +0200 Subject: [PATCH] Add changes to CI --- .github/workflows/test-build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 33d2c1675..38595d99d 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -34,13 +34,15 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + path: ${{ runner.temp }} - name: Setup node uses: actions/setup-node@v4 with: node-version: '20' registry-url: 'https://registry.npmjs.org' cache: 'npm' - - name: Install dependencies - run: npm ci + - name: Install dependencies inside temp + run: cd ${{ runner.temp }} && npm ci - name: Build documentation website (Dev Portal) - run: npm run docs:build + run: cd ${{ runner.temp }} && npm run docs:build