Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/javascript-node:3-22",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/azure-cli:1": {}
},
"image": "kaniska487/myrepo:1.2.5",
"postCreateCommand": "sudo corepack enable && corepack prepare yarn@4.9.4 --activate && npm install -g @devcontainers/cli",
"customizations": {
"vscode": {
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/smoke-universal-devcontainer-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Smoke test "universal" with devcontainers/ci

on:
workflow_dispatch:
pull_request:
paths:
- src/universal/**
- .devcontainer/devcontainer.json
- .github/workflows/smoke-universal-devcontainer-ci.yaml

jobs:
smoke-test:
name: Build and run universal tests in dev container
runs-on: devcontainer-image-builder-ubuntu
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Build and run tests in dev container
uses: devcontainers/ci@v0.3
with:
configFile: .devcontainer/devcontainer.json
runCmd: src/universal/test-project/test.sh
Loading