diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index fae29b4..aad0ed6 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -22,21 +22,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Compute dependency cache key - id: npm-key - run: | - echo "hash=$(sha256sum package-lock.json | cut -d' ' -f1)" >> $GITHUB_OUTPUT - - - name: Cache node_modules - uses: actions/cache@v3 - with: - path: | - node_modules - ~/.npm - key: npm-${{ runner.os }}-${{ steps.npm-key.outputs.hash }} - restore-keys: | - npm-${{ runner.os }}- - - name: Install dependencies run: npm ci --legacy-peer-deps @@ -61,21 +46,6 @@ jobs: # Required for acceptance tests - they import prisma via @/ path alias # and @cucumber/cucumber for cucumber-e2e tests - - name: Compute dependency cache key - id: npm-key - run: | - echo "hash=$(sha256sum package-lock.json | cut -d' ' -f1)" >> $GITHUB_OUTPUT - - - name: Cache node_modules - uses: actions/cache@v3 - with: - path: | - node_modules - ~/.npm - key: npm-${{ runner.os }}-${{ steps.npm-key.outputs.hash }} - restore-keys: | - npm-${{ runner.os }}- - - name: Install dependencies run: npm ci --legacy-peer-deps