Skip to content

Commit

Permalink
chore: add workflow trigger events for solo-game branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sgfost committed Sep 12, 2023
1 parent e59c804 commit cfc9ae0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Check Code Style/Lint

on:
push:
branches: [main]
branches: [ main, solo ]
pull_request:
branches: [main]
branches: [ main, solo ]

jobs:
client:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build/Test Docker Image CI

on:
push:
branches: [ main ]
branches: [ main, solo ]
pull_request:
branches: [ main ]
branches: [ main, solo ]

jobs:

Expand Down
2 changes: 1 addition & 1 deletion client/src/views/SoloGame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ export default class SoloGame extends Vue {

<style lang="scss">
@import "@port-of-mars/client/stylesheets/sologame";
</style>
</style>
2 changes: 1 addition & 1 deletion server/src/rooms/sologame/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,4 +282,4 @@ export class EndGameCmd extends Cmd<{ status: SoloGameStatus }> {
await new Promise(resolve => setTimeout(resolve, 5000));
this.room.disconnect();
}
}
}

0 comments on commit cfc9ae0

Please sign in to comment.