Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
- update GH Actions workflow
  • Loading branch information
gilbarbara committed Nov 11, 2024
1 parent 8a4ea33 commit 0657b28
Show file tree
Hide file tree
Showing 6 changed files with 5,345 additions and 5,022 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ name: CI

on:
push:
branches:
- main
branches: [main]
tags:
- 'v*'
- "v*"
pull_request:
branches: ['*']
branches: ["*"]

workflow_dispatch:

Expand Down Expand Up @@ -35,13 +34,13 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
node-version: 22
registry-url: "https://registry.npmjs.org"

- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
version: 9
run_install: false

- name: Get pnpm store directory
Expand All @@ -53,7 +52,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
key: "${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}"
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,44 +39,44 @@
"@gilbarbara/react-range-slider": "^0.7.0",
"@types/spotify-api": "^0.0.25",
"@types/spotify-web-playback-sdk": "^0.1.19",
"colorizr": "^2.1.1",
"colorizr": "^3.0.1",
"memoize-one": "^6.0.0",
"nano-css": "^5.6.1"
"nano-css": "^5.6.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.2",
"@gilbarbara/eslint-config": "^0.7.5",
"@gilbarbara/hooks": "^0.6.4",
"@arethetypeswrong/cli": "^0.17.0",
"@gilbarbara/eslint-config": "^0.8.2",
"@gilbarbara/hooks": "^0.8.2",
"@gilbarbara/prettier-config": "^1.0.0",
"@gilbarbara/tsconfig": "^0.2.3",
"@size-limit/file": "^11.1.2",
"@swc/core": "^1.4.11",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@size-limit/file": "^11.1.6",
"@swc/core": "^1.9.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/exenv": "^1.2.2",
"@types/node": "^20.11.30",
"@types/once": "^1.4.4",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^1.4.0",
"del-cli": "^5.1.0",
"@types/node": "^22.9.0",
"@types/once": "^1.4.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.4",
"del-cli": "^6.0.0",
"fix-tsup-cjs": "^1.2.0",
"husky": "^9.0.11",
"husky": "^9.1.6",
"is-ci-cli": "^2.2.0",
"jest-extended": "^4.0.2",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"repo-tools": "^0.3.1",
"size-limit": "^11.1.2",
"size-limit": "^11.1.6",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0",
"vitest-fetch-mock": "^0.2.2"
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.4",
"vitest-fetch-mock": "^0.4.2"
},
"scripts": {
"build": "npm run clean && tsup && fix-tsup-cjs",
Expand Down
Loading

0 comments on commit 0657b28

Please sign in to comment.