File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55# By running a yarn install inside the same base container that we use in our CI, we can
66# ensure the same checksums are created correctly.
77#
8- FROM cimg/node:22.15
8+ FROM cimg/node:22.15.1
99
1010COPY . .
1111RUN sudo yarn cache clear --all
Original file line number Diff line number Diff line change 44
55# Runs tests and common CI operations. Needs minimal install. Assumes
66# workspace will be restored into the project folder.
7- FROM cimg/node:22.15 AS test-runner
7+ FROM cimg/node:22.15.1 AS test-runner
88RUN sudo apt-get update && sudo apt-get install -y \
99 python3-venv
1010WORKDIR /home/circleci
@@ -29,15 +29,15 @@ RUN yarn install --immutable;
2929# Acts as an intermediate stage for adding the firefox install. Note,
3030# that a yarn install must happen first to ensure the correct version
3131# of firefox is installed. Also note that the functional-test-runner
32- # must based on cimg/node:22.14 -browsers, which is why this stage
32+ # must based on cimg/node:22.15.1 -browsers, which is why this stage
3333# is necessary.
3434FROM builder AS playwright-install
3535RUN npx playwright install --with-deps firefox chromium webkit;
3636
3737
3838# Runs functional tests in our CI. Needs minimal install. Assumes
3939# workspace will be restored into the project folder.
40- FROM cimg/node:22.14 -browsers AS functional-test-runner
40+ FROM cimg/node:22.15.1 -browsers AS functional-test-runner
4141WORKDIR /home/circleci
4242COPY --chown=circleci:circleci --from=playwright-install /home/circleci/.cache/ms-playwright .cache/ms-playwright/
4343COPY --chown=circleci:circleci project project
You can’t perform that action at this time.
0 commit comments