Skip to content

Commit

Permalink
chore: update dev deps, skip some jobs if author is dependabot (#1333)
Browse files Browse the repository at this point in the history
* chore: update dev deps, skip some jobs if author is dependabot

* chore: fix cypress bin in action
  • Loading branch information
edodusi authored Feb 6, 2025
1 parent 257f3f3 commit 73b1228
Show file tree
Hide file tree
Showing 6 changed files with 796 additions and 445 deletions.
8 changes: 7 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ updates:
- 'storyblok*'
update-types:
- patch
- minor
storyblok:
patterns:
- 'storyblok*'
update-types:
- patch
- minor
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-minor
- version-update:semver-major
2 changes: 2 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ env:

jobs:
commitlint:
# Skip job if PR is from Dependabot
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-24.04
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pkg.pr.new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ concurrency:

jobs:
build:
# Skip job if PR is from Dependabot
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout code
uses: actions/checkout@v4

- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v4
with:
Expand Down
31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@storyblok/react",
"type": "module",
"version": "4.3.2",
"version": "4.3.5",
"private": false,
"packageManager": "pnpm@9.15.1",
"packageManager": "pnpm@10.2.0",
"description": "SDK to integrate Storyblok into your project using React.",
"author": "Storyblok",
"license": "MIT",
Expand Down Expand Up @@ -61,31 +61,34 @@
"@storyblok/js": "3.2.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@cypress/react": "^8.0.2",
"@cypress/vite-dev-server": "^5.2.1",
"@storyblok/eslint-config": "^0.3.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^20.17.10",
"@types/node": "^22.13.1",
"@types/react": "18.3.12",
"@vitejs/plugin-react": "^4.3.4",
"babel-jest": "^29.7.0",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint": "^9.19.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jest": "^28.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"simple-git-hooks": "^2.11.1",
"start-server-and-test": "^2.0.9",
"typescript": "5.6.3",
"vite": "^5.4.13",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
"start-server-and-test": "^2.0.10",
"typescript": "5.7.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": ["cypress"]
},
"babel": {
"presets": [
Expand Down
Loading

0 comments on commit 73b1228

Please sign in to comment.