File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed
Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change 5454 key : ${{ env.CACHE_KEY }}
5555
5656 coverage :
57- needs : build
5857 name : Run Coverage Tests
5958 runs-on : ubuntu-latest
6059
7776 node-version : ${{ matrix.node }}
7877 cache : " pnpm"
7978
80- - name : Restore build artifacts
81- uses : actions/cache/restore@v4
82- with :
83- path : .
84- key : ${{ env.CACHE_KEY }}
79+ - name : Install dependencies
80+ run : pnpm install --frozen-lockfile
8581
8682 - name : Run Test Coverage
8783 run : pnpm test:coverage
9288 token : ${{ secrets.CODECOV_TOKEN }}
9389
9490 lint :
95- needs : build # Require build to complete before running tests
96-
9791 name : Lint Code
9892 runs-on : ubuntu-latest
9993
@@ -112,11 +106,8 @@ jobs:
112106 node-version : 22
113107 cache : " pnpm"
114108
115- - name : Restore build artifacts
116- uses : actions/cache/restore@v4
117- with :
118- path : .
119- key : ${{ env.CACHE_KEY }}
109+ - name : Install dependencies
110+ run : pnpm install --frozen-lockfile
120111
121112 - name : Run Lint
122113 run : pnpm run lint
You can’t perform that action at this time.
0 commit comments