-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #684 from comses/vite-bookworm
build(deps): upgrade to debian bookworm node-lts
- Loading branch information
Showing
16 changed files
with
7,525 additions
and
4,546 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.git | ||
.yarn/cache | ||
.yarn/install-state.gz | ||
build | ||
incoming | ||
docker | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM cypress/base:18.14.1 | ||
WORKDIR /code | ||
|
||
# only install dependencies if package.json or yarn.lock has changed | ||
# only install dependencies if package.json or package-lock.json has changed | ||
COPY package.json . | ||
COPY yarn.lock . | ||
COPY package-lock.json . | ||
|
||
# suppress most of the cypress messages | ||
ENV CI=1 | ||
|
||
RUN yarn install --frozen-lockfile | ||
RUN npm install | ||
|
||
# verify that cypress is installed correctly | ||
RUN yarn cypress verify | ||
RUN npm run cy:run -- verify |
Oops, something went wrong.