Skip to content

Commit cfa7e70

Browse files
committed
#RI-6281 - Enhance Github Actions
1 parent 4c6493a commit cfa7e70

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.circleci/build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ yarn --cwd redisinsight/api
77

88
# build
99

10-
# yarn build:statics
10+
yarn build:statics
1111
yarn build:ui
1212
yarn --cwd ./redisinsight/api build:prod

.github/actions/install-all-build-libs/action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,8 @@ runs:
3636
node-version: '20.15'
3737
# disable cache for windows
3838
# https://github.com/actions/setup-node/issues/975
39-
# cache: ${{ runner.os != 'Windows' && 'yarn' || '' }}
40-
# cache-dependency-path: ${{ runner.os != 'Windows' && '**/yarn.lock' || '' }}
41-
cache: 'yarn'
42-
cache-dependency-path: '**/yarn.lock'
39+
cache: ${{ runner.os != 'Windows' && 'yarn' || '' }}
40+
cache-dependency-path: ${{ runner.os != 'Windows' && '**/yarn.lock' || '' }}
4341

4442
- name: Setup Python
4543
# if: ${{ contains(inputs.skip-electron-deps, '1') }}

electron-builder.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
"artifactName": "Redis-Insight-${os}-${arch}.${ext}",
4242
"entitlements": "resources/entitlements.mac.plist",
4343
"entitlementsInherit": "resources/entitlements.mac.plist",
44-
"gatekeeperAssess": false,
45-
"identity": null
44+
"gatekeeperAssess": false
4645
},
4746
"mas": {
4847
"mergeASARs": false,

jest.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = {
4040
'<rootDir>/redisinsight/ui/src/packages',
4141
'<rootDir>/redisinsight/ui/src/mocks',
4242
],
43-
coverageDirectory: './coverage',
43+
coverageDirectory: './report/coverage',
4444
coveragePathIgnorePatterns: [
4545
'/node_modules/',
4646
'<rootDir>/redisinsight/api',

0 commit comments

Comments
 (0)