Skip to content

Commit 645023a

Browse files
committed
resolve merge conflicts with feature/pbs-25.02
2 parents 53ddd5a + 86f9043 commit 645023a

File tree

216 files changed

+1279
-771
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+1279
-771
lines changed

.github/rules/All Branch Rules.json

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/rules/Main_Develop Branch Rules.json

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/review.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: Run Jest Tests
22

33
on:
44
pull_request:
5-
branches: ['*'] # or change to match your default branch
65
push:
7-
branches: ['*']
6+
branches:
7+
- develop
8+
- main
9+
- 'release/*'
10+
- 'hotfix/*'
811
workflow_dispatch:
912

1013
jobs:
@@ -45,6 +48,10 @@ jobs:
4548

4649
- name: Check coverage thresholds
4750
run: npm run test:check-coverage-thresholds
51+
- name: Coveralls Report
52+
uses: coverallsapp/github-action@v2
53+
with:
54+
github-token: ${{ secrets.GITHUB_TOKEN }}
4855
lint:
4956
runs-on: ubuntu-latest
5057

.husky/pre-push

Lines changed: 0 additions & 20 deletions
This file was deleted.

angular.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"styles": [
4949
"src/styles/styles.scss",
5050
"node_modules/primeflex/primeflex.css",
51-
"node_modules/@fortawesome/fontawesome-free/css/all.min.css",
5251
"node_modules/ngx-markdown-editor/assets/highlight.js/agate.min.css"
5352
],
5453
"stylePreprocessorOptions": {
@@ -74,7 +73,8 @@
7473
"maximumError": "25kB"
7574
}
7675
],
77-
"outputHashing": "all"
76+
"outputHashing": "all",
77+
"optimization": true
7878
},
7979
"analyze-bundle": {
8080
"sourceMap": true,
@@ -147,15 +147,15 @@
147147
},
148148
"development": {
149149
"buildTarget": "osf:build:development",
150-
"hmr": false
150+
"hmr": true
151151
},
152152
"docker": {
153153
"buildTarget": "osf:build:docker",
154-
"hmr": false
154+
"hmr": true
155155
},
156156
"staging": {
157157
"buildTarget": "osf:build:staging",
158-
"hmr": false
158+
"hmr": true
159159
},
160160
"test": {
161161
"buildTarget": "osf:build:test",

jest.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ module.exports = {
5050
extensionsToTreatAsEsm: ['.ts'],
5151
coverageThreshold: {
5252
global: {
53-
branches: 24.1,
54-
functions: 28.73,
55-
lines: 56.52,
56-
statements: 56.82,
53+
branches: 29.01,
54+
functions: 32.75,
55+
lines: 60.28,
56+
statements: 60.77,
5757
},
5858
},
5959
watchPathIgnorePatterns: [

0 commit comments

Comments
 (0)