Skip to content

Commit

Permalink
build(ci): disable yarn caching until actions/setup-node#1027 is reso…
Browse files Browse the repository at this point in the history
…lved
  • Loading branch information
mihirsamdarshi committed May 10, 2024
1 parent ad236dc commit d80c5f7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run corepack enable
run: corepack enable

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# cache: yarn

- name: Install project
run: yarn install --frozen-lockfile
Expand All @@ -37,11 +40,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run corepack enable
run: corepack enable

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# cache: yarn

- name: Install project
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit d80c5f7

Please sign in to comment.