Skip to content

Commit

Permalink
Upgrade Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnyroeller committed Mar 22, 2024
1 parent 7487ecc commit bd98074
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
chromatic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci --unsafe-perm
- name: Publish to Chromatic
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci --unsafe-perm
- run: npm run build
- run: npm test
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci --unsafe-perm
- run: npm run build
- run: npm test
Expand Down

0 comments on commit bd98074

Please sign in to comment.