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