File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " GitHub Actions (TypeScript)" ,
3
3
"image" : " mcr.microsoft.com/devcontainers/typescript-node:20" ,
4
- "postCreateCommand" : " npm install " ,
4
+ "postCreateCommand" : " .devcontainer/post-create " ,
5
5
"customizations" : {
6
6
"codespaces" : {
7
7
"openFiles" : [" README.md" ]
36
36
},
37
37
"features" : {
38
38
"ghcr.io/devcontainers/features/github-cli:1" : {},
39
- "ghcr.io/devcontainers-contrib/features/prettier:1" : {}
39
+ "ghcr.io/devcontainers-contrib/features/prettier:1" : {},
40
+ "ghcr.io/devcontainers/features/ruby:1" : {}
40
41
}
41
42
}
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -eux
4
+
5
+ # Setup licensed
6
+ sudo apt update
7
+ sudo apt install -y \
8
+ cmake\
9
+ pkg-config
10
+
11
+ gem install licensed
12
+
13
+ # NPM install
14
+ npm install
15
+
You can’t perform that action at this time.
0 commit comments