Add e2e tests

Note: rushx only dispatches package.json scripts, so it's probably not necessary to add it as a distinct manager at all.
This commit is contained in:
James McMeeking 2026-05-08 11:24:17 +01:00
parent 08ae1ef732
commit 5f56114185
No known key found for this signature in database
GPG key ID: C69A11061EE15228
3 changed files with 207 additions and 0 deletions

View file

@ -25,6 +25,7 @@ ARG NODE_VERSION=latest
ARG NPM_VERSION=latest
ARG YARN_VERSION=latest
ARG PNPM_VERSION=latest
ARG RUSH_VERSION=latest
ARG PYTHON_VERSION=3
SHELL ["/bin/bash", "-c"]
@ -46,6 +47,7 @@ RUN volta install node@${NODE_VERSION}
RUN volta install npm@${NPM_VERSION}
RUN volta install yarn@${YARN_VERSION}
RUN volta install pnpm@${PNPM_VERSION}
RUN npm install -g @microsoft/rush@${RUSH_VERSION}
# Install Bun
RUN curl -fsSL https://bun.sh/install | bash