File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM mcr.microsoft.com/devcontainers/javascript-node:20
2
+
3
+ RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \
4
+ echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \
5
+ echo "Acquire::BrokenProxy true;" >> /etc/apt/apt.conf.d/99custom
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " themer" ,
3
- "image " : " mcr.microsoft.com/devcontainers/javascript-node:20 " ,
3
+ "build " : { "dockerfile" : " ./Dockerfile " } ,
4
4
"remoteUser" : " node" ,
5
5
"customizations" : {
6
6
"vscode" : {
Original file line number Diff line number Diff line change 28
28
runCmd : |
29
29
cd web
30
30
npm run test:unit
31
+ test-web-integration :
32
+ runs-on : ubuntu-latest
33
+ steps :
34
+ - uses : actions/checkout@v4
35
+ - name : Run web integration tests
36
+ uses :
devcontainers/[email protected]
37
+ with :
38
+ push : never
39
+ runCmd : |
40
+ cd web
41
+ sudo npx playwright install-deps
42
+ npx playwright install
43
+ npm run test:integration
31
44
lint-web :
32
45
runs-on : ubuntu-latest
33
46
steps :
You can’t perform that action at this time.
0 commit comments