Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Apr 2, 2024
1 parent d88e261 commit 8fd697b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
schedule:
- cron: "16 1 * * 5"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: 🌍 Deploy demo

on:
push:
branches: [main, next]
branches: ["main"]
pull_request:
branches: ["main"]

concurrency:
cancel-in-progress: true
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: ⛑️ Lint

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

concurrency:
cancel-in-progress: true
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: 🤖 Playwright Tests

on:
push:
branches: [main, master]
branches: ["main"]
pull_request:
branches: [main, master]
branches: ["main"]

jobs:
test:
timeout-minutes: 20
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: 💪 Testing

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

concurrency:
cancel-in-progress: true
Expand Down

0 comments on commit 8fd697b

Please sign in to comment.