Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/error-indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsmaerten committed Feb 11, 2024
2 parents 2a5c3ad + 72abc19 commit c61e49c
Show file tree
Hide file tree
Showing 4 changed files with 522 additions and 352 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

Expand All @@ -23,7 +23,7 @@ jobs:

- name: Read package JSON
id: packagejson
uses: gregoranders/[email protected].20
uses: gregoranders/[email protected].21

- name: Compile source
run: yarn build:app:unpacked
Expand All @@ -36,13 +36,13 @@ jobs:
run: iscc setup-script.iss /Dversion=${{ steps.packagejson.outputs.version }}

- name: Upload portable version
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: GlucoseTicker-${{ steps.packagejson.outputs.version }}-portable
path: dist/win-unpacked

- name: Upload installer
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: GlucoseTicker-${{ steps.packagejson.outputs.version }}-setup
path: dist/GlucoseTicker-${{ steps.packagejson.outputs.version }}-setup.exe
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
Expand All @@ -38,11 +38,11 @@
"electron-builder": "^22.7.0",
"idb-keyval": "^3.2.0",
"nexe": "^4.0.0-rc.1",
"prettier": "^2.0.5",
"prettier": "^3.0.0",
"react": "^16.13.1",
"react-countdown": "^2.2.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rimraf": "^5.0.0",
"rollup": "^2.10.9",
"rollup-plugin-copy": "^3.3.0",
"typescript": "^3.9.3"
Expand Down
17 changes: 16 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,20 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"addLabels": [
"renovate"
],
"packageRules": [
{
"groupName": "automerge",
"automerge": true,
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest"
]
}
]
}
}
Loading

0 comments on commit c61e49c

Please sign in to comment.