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:
parent
162149a04d
commit
598fb70615
2 changed files with 21 additions and 1 deletions
|
@ -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
19
.github/workflows/devcontainer.yml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue