Skip to content

Commit

Permalink
Merge branch 'develop' into fix-release-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fpotier authored Aug 20, 2024
2 parents 4504292 + 978eb53 commit 05057e0
Show file tree
Hide file tree
Showing 4 changed files with 378 additions and 220 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Test
run: |
Expand All @@ -20,10 +20,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js 20.x
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 20.x

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Cache node_modules
id: cached-node-modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }}
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Cache node_modules
id: cached-node-modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }}
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Cache node_modules
id: cached-node-modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}-${{ env.NODE_VERSION }}
Expand Down
Loading

0 comments on commit 05057e0

Please sign in to comment.