Skip to content

Commit 236802a

Browse files
committed
chore: reenable yarn pnp
1 parent c9f036a commit 236802a

7 files changed

Lines changed: 16552 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,21 @@ jobs:
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
cache: 'yarn'
28-
cache-dependency-path: yarn.lock
28+
29+
- name: Cache Yarn local cache
30+
uses: actions/cache@v4
31+
with:
32+
path: .yarn/cache
33+
key: yarn-local-cache-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
34+
restore-keys: |
35+
yarn-local-cache-${{ runner.os }}-
2936
3037
- name: Install dependencies
31-
run: yarn install --immutable --inline-builds
38+
shell: bash
39+
run: |
40+
corepack enable yarn
41+
yarn -v
42+
yarn install --immutable
3243
3344
- name: Run linter
3445
run: yarn lint

.pnp.cjs

Lines changed: 14388 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)