33
44definitions :
55 caches :
6- cypress-2024 -02-x : ~/.cache/Cypress
7- node-2024 -02-x : ./node_modules
6+ cypress-2025 -02-x : ~/.cache/Cypress
7+ node-2025 -02-x : ./node_modules
88
99 steps :
1010 - step : &preliminary-operation
@@ -62,32 +62,32 @@ definitions:
6262 - step : &angular-build
6363 name : angular-build
6464 image :
65- name : cypress/browsers:node-18.20.3 -chrome-125 .0.6422.141 -1-ff-126.0.1 -edge-125 .0.2535.85 -1
65+ name : cypress/browsers:node-22.21.0 -chrome-141 .0.7390.107 -1-ff-144.0 -edge-141 .0.3537.92 -1
6666 run-as-user : 1000
6767 size : 4x
6868 caches :
69- - node-2024 -02-x
69+ - node-2025 -02-x
7070 script :
71- - yarn install --frozen-lockfile
72- - yarn run build:prod:ci
73- - yarn run build:mirador
71+ - npm ci
72+ - npm run build:prod:ci
73+ - npm run build:mirador
7474 artifacts :
7575 - node_modules/**
7676 - dist/**
7777
7878 - step : &unittest-code-checks
7979 name : test-code-checks
8080 image :
81- name : cypress/browsers:node-18.20.3 -chrome-125 .0.6422.141 -1-ff-126.0.1 -edge-125 .0.2535.85 -1
81+ name : cypress/browsers:node-22.21.0 -chrome-141 .0.7390.107 -1-ff-144.0 -edge-141 .0.3537.92 -1
8282 run-as-user : 1000
8383 size : 4x
8484 caches :
85- - node-2024 -02-x
85+ - node-2025 -02-x
8686 script :
87- - yarn build:lint
87+ - npm run build:lint
8888 - npm run ng-high-memory -- lint --quiet
89- - yarn run check-circ-deps
90- - yarn run test:headless
89+ - npm run check-circ-deps
90+ - npm run test:headless
9191 artifacts :
9292 - .next/**
9393 - .cache/**
@@ -96,14 +96,14 @@ definitions:
9696 - step : &run-e2e-tests
9797 name : Run E2E test
9898 image :
99- name : cypress/browsers:node-18.20.3 -chrome-125 .0.6422.141 -1-ff-126.0.1 -edge-125 .0.2535.85 -1
99+ name : cypress/browsers:node-22.21.0 -chrome-141 .0.7390.107 -1-ff-144.0 -edge-141 .0.3537.92 -1
100100 run-as-user : 0
101101 size : 4x
102102 services :
103103 - docker
104104 caches :
105- - node-2024 -02-x
106- - cypress-2024 -02-x
105+ - node-2025 -02-x
106+ - cypress-2025 -02-x
107107 script :
108108 - apt-get update && apt-get install -y curl
109109 - export HASH_COMMIT=${BITBUCKET_COMMIT:0:8}
@@ -143,11 +143,11 @@ definitions:
143143 exit 1
144144 fi
145145 - npx cypress install
146- - yarn serve:ssr &
146+ - npm run serve:ssr &
147147 - echo "Waiting for server to start..."
148- - sleep 10
148+ - sleep 60
149149 - echo "Running Cypress tests..."
150- - yarn cypress:run --env chromeFlags="$CHROME_FLAGS"
150+ - npm run cypress:run --env chromeFlags="$CHROME_FLAGS"
151151 - echo "Test execution completed"
152152 artifacts :
153153 - cypress/screenshots/**
0 commit comments