Skip to content

Commit

Permalink
another test
Browse files Browse the repository at this point in the history
  • Loading branch information
xrutayisire committed Jan 16, 2025
1 parent 502952a commit 7a9df1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/actions/restore-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- name: Cache node_modules
id: cache-dependencies
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
node_modules
Expand All @@ -14,15 +14,15 @@ runs:
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-dependencies
- name: Cache artifacts
id: cache-artifacts
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
packages/*/dist
packages/core/build
key: ${{ runner.os }}-${{ github.run_id }}-artifacts
- name: Cache playwright binaries
id: cache-playwright-binaries
uses: actions/cache@v4
uses: actions/cache@v3
with:
path: |
~/.cache/ms-playwright
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Cache node_modules and artifacts
uses: ./.github/actions/restore-cache
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Cache node_modules and artifacts
uses: ./.github/actions/restore-cache
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Restore cache
uses: ./.github/actions/restore-cache
Expand Down

0 comments on commit 7a9df1c

Please sign in to comment.