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 Jan 14, 2025
1 parent c8e78ee commit 3d203e7
Show file tree
Hide file tree
Showing 3 changed files with 1,440 additions and 834 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: CI

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

workflow_dispatch:

Expand Down Expand Up @@ -34,13 +33,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@v3
with:
version: 8
version: 9
run_install: false

- name: Get pnpm store directory
Expand All @@ -67,7 +66,7 @@ jobs:

- name: SonarCloud Scan
if: "!startsWith(github.ref, 'refs/tags/')"
uses: SonarSource/sonarcloud-github-action@master
uses: SonarSource/sonarqube-scan-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,38 +51,38 @@
"react": "16.8 - 19"
},
"dependencies": {
"react-from-dom": "^0.7.3"
"react-from-dom": "^0.7.5"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@gilbarbara/eslint-config": "^0.8.2",
"@arethetypeswrong/cli": "^0.17.3",
"@gilbarbara/eslint-config": "^0.8.4",
"@gilbarbara/prettier-config": "^1.0.0",
"@gilbarbara/tsconfig": "^0.2.3",
"@size-limit/preset-small-lib": "^11.1.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.6",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"browser-cache-mock": "^0.1.7",
"del-cli": "^6.0.0",
"fix-tsup-cjs": "^1.2.0",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"husky": "^9.1.7",
"jest-extended": "^4.0.2",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"jsdom": "^26.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"repo-tools": "^0.3.1",
"size-limit": "^11.1.6",
"start-server-and-test": "^2.0.8",
"start-server-and-test": "^2.0.10",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"vitest-fetch-mock": "^0.4.2"
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"vitest-fetch-mock": "^0.4.3"
},
"scripts": {
"build": "pnpm run clean && tsup && fix-tsup-cjs",
Expand Down
Loading

0 comments on commit 3d203e7

Please sign in to comment.