✨ (go/v4) Add GitHub Actions #155
Workflow file for this run
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
name: Test DevContainer Image | |
on: | |
push: | |
pull_request: | |
jobs: | |
test-devcontainer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Go 1.22.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.x" | |
- name: Setup NodeJS 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Setup Devcontainer CLI | |
run: | | |
npm install -g @devcontainers/cli | |
- name: Build and Validate DevContainer | |
run: | | |
cd testdata/project-v4 | |
OUTPUT=$(devcontainer up --workspace-folder=./) | |
STATUS=$(echo "$OUTPUT" | jq -r '.outcome') | |
if [[ "$STATUS" == "success" ]]; then | |
echo "Devcontainer setup was successful." | |
exit 0 | |
else | |
echo "Devcontainer setup failed." | |
exit 1 | |
fi |