Merge pull request #29 from actions/mr/licensed

Setup licensed on the codespace
This commit is contained in:
Marais Rossouw
2025-05-27 13:42:50 +10:00
committed by GitHub
3 changed files with 19 additions and 5 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
{
"name": "GitHub Actions (TypeScript)",
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"postCreateCommand": "npm install",
"postCreateCommand": ".devcontainer/post-create",
"customizations": {
"codespaces": {
"openFiles": ["README.md"]
@@ -36,6 +36,7 @@
},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers-contrib/features/prettier:1": {}
"ghcr.io/devcontainers-contrib/features/prettier:1": {},
"ghcr.io/devcontainers/features/ruby:1": {}
}
}
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
set -euxo pipefail
# Setup licensed
sudo apt update
sudo apt install -y \
cmake pkg-config
gem install licensed
# NPM install
npm install
+3 -3
View File
@@ -12,9 +12,9 @@
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@azure-rest/ai-inference": "*",
"@azure/core-auth": "*",
"@azure/core-sse": "*",
"@azure-rest/ai-inference": "latest",
"@azure/core-auth": "latest",
"@azure/core-sse": "latest",
"@eslint/compat": "^1.2.9",
"@github/local-action": "^3.2.1",
"@jest/globals": "^29.7.0",