Skip to content

Commit 937b847

Browse files
Fix: [AEA-5081] - new header branch (#1605)
## Summary https://nhsd-jira.digital.nhs.uk/browse/AEA-5081 https://nhsd-jira.digital.nhs.uk/browse/AEA-5338 - Routine Change ### Details implemented the new header from NCRS. had to utilise their 'double tap' logic to get it to work on mobile view.
1 parent e955b44 commit 937b847

File tree

19 files changed

+862
-345
lines changed

19 files changed

+862
-345
lines changed

.devcontainer/Dockerfile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
1-
FROM mcr.microsoft.com/devcontainers/base:ubuntu
1+
FROM ubuntu:22.04
22
ARG TARGETARCH
33
ENV TARGETARCH=${TARGETARCH}
44

5+
# Install essential packages first
6+
RUN apt-get update && apt-get install -y \
7+
curl \
8+
wget \
9+
git \
10+
sudo \
11+
&& apt-get clean \
12+
&& rm -rf /var/lib/apt/lists/*
13+
14+
# Create vscode user with sudo access
15+
RUN groupadd -r vscode && useradd -r -g vscode -m -s /bin/bash vscode \
16+
&& echo "vscode ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
17+
518
ARG ASDF_VERSION
619
COPY .tool-versions.asdf /tmp/.tool-versions.asdf
720

.github/workflows/run_regression_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
GITHUB-TOKEN: ${{ steps.generate-token.outputs.token }}
7474
run: |
7575
if [[ "$TARGET_ENVIRONMENT" != "prod" && "$TARGET_ENVIRONMENT" != "ref" ]]; then
76-
REGRESSION_TEST_REPO_TAG="v3.5.10" # This is the tag or branch of the regression test code to run, usually a version tag like v3.1.0 or a branch name
76+
REGRESSION_TEST_REPO_TAG="v3.6.1" # This is the tag or branch of the regression test code to run, usually a version tag like v3.1.0 or a branch name
7777
REGRESSION_TEST_WORKFLOW_TAG="v3.5.10" # This is the tag of the github workflow to run, usually the same as REGRESSION_TEST_REPO_TAG
7878
7979
if [[ -z "$REGRESSION_TEST_REPO_TAG" || -z "$REGRESSION_TEST_WORKFLOW_TAG" ]]; then

0 commit comments

Comments
 (0)