Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Ship It
on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read
Expand Down Expand Up @@ -31,6 +33,7 @@ jobs:
- run: npm test # node scripts/preflight.mjs — a bad ship.config.json ABORTS here

deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: test # deploy only runs if the pre-flight gate is green
runs-on: ubuntu-latest
environment:
Expand Down
2 changes: 1 addition & 1 deletion launchpad/ship.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"shipName": "Nebula Runner",
"color": "22d3ee",
"color": "#22d3ee",
"shipModel": "fighter",
"emblem": "comet"
}
Loading