Skip to content

Commit

Permalink
chore(ci): do not cache for now
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm committed May 22, 2024
1 parent 89934b8 commit 265fc49
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,12 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: |
package-lock.json
automated-tests/package-lock.json
- name: Cache NPM dependencies 🔨
uses: actions/cache@v4
id: cache-test
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}

- name: Install NPM dependencies for Uplink Web 📦
if: steps.cache-test.outputs.cache-hit != 'true'
run: npm install

- name: Install NPM dependencies for Testing Repo 📦
working-directory: automated-tests
run: npm install

- name: Run server
Expand Down

0 comments on commit 265fc49

Please sign in to comment.