Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
stages:
- build

build:
stage: build
tags:
- angular
before_script:
- echo "Running script to use node 22 ($CI_PIPELINE_ID)"
- export NVM_DIR="$HOME/.nvm"
- '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"'
- nvm use 22
artifacts:
paths:
- /dist/*
script:
- echo "CI_PIPELINE_ID $CI_PIPELINE_ID"
- yarn cache clean
- yarn
- ./node_modules/.bin/ng build
only:
- develop
- master
- main
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"cli": {
"schematicCollections": [
"@angular-eslint/schematics"
]
],
"analytics": false
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class ReducerService {
if (prop === '_target') return target;
if (prop === '_isProxy') return true;

if (typeof target[prop] === 'object' && !target[prop]._isProxy) {
if (target[prop] && typeof target[prop] === 'object' && !target[prop]._isProxy) {
const currentStack = receiver._stack || [];
(this as any)._stack = [ ...currentStack, prop ];

Expand Down