0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added dexperimental Dev Container CI workflow

This commit is contained in:
Chris Raible 2024-10-25 03:19:14 +00:00
parent 162149a04d
commit 598fb70615
2 changed files with 21 additions and 1 deletions

View file

@ -102,7 +102,8 @@
"terminal.integrated.profiles.linux": { "zsh": { "path": "/bin/zsh" } }
},
"extensions": [
"ms-azuretools.vscode-docker"
"ms-azuretools.vscode-docker",
"github.vscode-github-actions"
]
}
},

19
.github/workflows/devcontainer.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Dev Container
on:
pull_request:
types: [opened, synchronize, reopened, edited, closed]
push:
branches:
- main
- v5.*
jobs:
build:
name: Dev Container Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Pre-build dev container image and run unit tests
uses: devcontainers/ci@v0.3
with:
runCmd: yarn test:unit