Skip to content

Commit f18fead

Browse files
authored
[chore] Cache yarn packages for CI (#1646)
* [chore] Cache yarn packages for CI * Cache yarn in release.yml * [chore] Update deprecated download artifact on CI (#1647) * I'm merging even though ESLint is stlll failing in Github Actions as I believe it's running actions _without_ this PR applied yet
1 parent 9cd28b7 commit f18fead

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

.changeset/dirty-pets-fly.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.changeset/lucky-donuts-hammer.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.github/workflows/ci-cd.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: lts/*
22+
cache: 'yarn'
2223

2324
- name: Install Dependencies
2425
run: yarn install --frozen-lockfile

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: lts/*
22+
cache: 'yarn'
2223

2324
- name: Install Dependencies
2425
run: yarn install --frozen-lockfile

.github/workflows/style-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
name: ESLint Annotation
4242
steps:
43-
- uses: actions/download-artifact@v3
43+
- uses: actions/download-artifact@v4
4444
with:
4545
name: eslint_report.json
4646
- name: Annotate Code Linting Results

0 commit comments

Comments
 (0)