Skip to content

Commit

Permalink
ci: [github-workflows] - related #388 : upgrade ci workflows (node 20…
Browse files Browse the repository at this point in the history
…, upgrade some actions versions)
  • Loading branch information
mattgoud committed Nov 14, 2024
1 parent 7da7aec commit a295c83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

# 👇 Adds Chromatic as a step in the workflow
- name: Publish to Chromatic
uses: chromaui/action@v1
uses: chromaui/action@latest
# Chromatic GitHub Action options
with:
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
node: [20]

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

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.1.2

- name: Setup node env 🏗
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Cache ~/.pnpm-store 📦
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-pnpm-store
with:
Expand Down

0 comments on commit a295c83

Please sign in to comment.