Skip to content

Commit

Permalink
Merge pull request #13 from elek-io/finalize-cd
Browse files Browse the repository at this point in the history
Finalize CD
  • Loading branch information
Nils-Kolvenbach authored Oct 12, 2024
2 parents 9acf827 + 76352a0 commit 0146aef
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
ignore:
- dependency-name: "@types/node"
# Node.js types, ignore major updates since we don't want to use types for 22.x.x if we are using 20.x.x
update-types: ["version-update:semver-major"]
8 changes: 6 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
run: npm install
# - name: Run linter
# run: npm run lint
- name: Build
run: npm run build
- name: Create pull request or push artifacts to draft release
uses: changesets/action@v1
with:
title: 'WIP: Release x.x.x'
commit: Release new version
publish: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@radix-ui/react-popover": "1.1.1",
"@radix-ui/react-scroll-area": "1.1.0",
"@radix-ui/react-select": "2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slider": "1.2.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.0",
Expand Down Expand Up @@ -78,17 +78,17 @@
"@changesets/cli": "2.27.7",
"@electron-toolkit/eslint-config-prettier": "2.0.0",
"@electron-toolkit/eslint-config-ts": "2.0.0",
"@hookform/devtools": "^4.3.1",
"@hookform/devtools": "4.3.1",
"@redux-devtools/extension": "3.3.0",
"@tanstack/router-devtools": "1.49.1",
"@tanstack/router-plugin": "1.48.6",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@tsconfig/vite-react": "^3.0.2",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@tsconfig/vite-react": "3.0.2",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.19",
"electron": "31.2.0",
Expand Down

0 comments on commit 0146aef

Please sign in to comment.