File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Node.js & TypeScript" ,
3
+ "image" : " mcr.microsoft.com/devcontainers/typescript-node:14-bullseye" ,
4
+
5
+ // Features to add to the dev container. More info: https://containers.dev/features.
6
+ // "features": {},
7
+
8
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
9
+ // "forwardPorts": [],
10
+ "mounts" : [
11
+ " source=try-node-node_modules,target=${containerWorkspaceFolder}/node_modules,type=volume"
12
+ ],
13
+ // Use 'postCreateCommand' to run commands after the container is created.
14
+ // "postCreateCommand": "yarn install",
15
+
16
+ // Configure tool-specific properties.
17
+ // "customizations": {},
18
+
19
+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
20
+ // "remoteUser": "root"
21
+ }
Original file line number Diff line number Diff line change 11
11
deploy :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v3
15
15
- name : Use Node.js
16
- uses : actions/setup-node@v2
16
+ uses : actions/setup-node@v3
17
17
with :
18
18
node-version : 14.x
19
19
- name : Use the latest npm
Original file line number Diff line number Diff line change 9
9
test :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
- name : Use Node.js
14
- uses : actions/setup-node@v2
14
+ uses : actions/setup-node@v3
15
15
with :
16
16
node-version : 14.x
17
17
- name : Use the latest npm
You can’t perform that action at this time.
0 commit comments