Skip to content

Commit 9905096

Browse files
refactor: remove artifact saving step and switch to npm ci for dependency installation
1 parent 2ddfa11 commit 9905096

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,6 @@ jobs:
3737
with:
3838
node: ${{ env.NODE_VERSION }}
3939

40-
- name: Save build artifacts
41-
uses: actions/cache/save@v4
42-
with:
43-
path: .
44-
key: ${{ env.CACHE_KEY }}
45-
4640
unit:
4741
needs: build # Require build to complete before running tests
4842

@@ -60,7 +54,7 @@ jobs:
6054
cache: npm
6155

6256
- name: Install dependencies
63-
run: pnpm install --frozen-lockfile
57+
run: npm ci --include=dev
6458

6559
- name: Run tests
6660
run: npm run test

0 commit comments

Comments
 (0)