Skip to content

Commit

Permalink
ci: fix c ache
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 29, 2023
1 parent 6319b27 commit 0a93a6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
path: ./node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }}
- name: Install node modules
run: yarn install --immutable --immutable-cache
run: yarn install --frozen-lockfile
- name: Test
run: yarn run test

Expand All @@ -35,6 +35,6 @@ jobs:
path: ./node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', '**/*.patch') }}
- name: Install node modules
run: yarn install --immutable --immutable-cache
run: yarn install --frozen-lockfile
- name: Check code lint
run: yarn run lint

0 comments on commit 0a93a6c

Please sign in to comment.