Skip to content

Commit

Permalink
[Chore] Run CI on 'main' and 'staging'
Browse files Browse the repository at this point in the history
Problem: Currently CI is only run on pull requests. However, there is a
'deploy' job that is supposed to be run on 'staging' branch.

Solution: Run CI on pushes to 'main' and 'staging' branches.
  • Loading branch information
rvem committed Sep 2, 2024
1 parent 17219a0 commit 4abade0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@

name: CI

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

jobs:
validate:
Expand Down

0 comments on commit 4abade0

Please sign in to comment.