Skip to content

Commit

Permalink
chore: Enable manual trigger for each workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
catch-21 committed May 9, 2024
1 parent 898a58a commit a9295ad
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e-ios-macmini.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: e2e-ios-macmini

on: pull_request

on:
workflow_dispatch:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/jest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: tests

on: pull_request
on:
workflow_dispatch:
pull_request:

jobs:
tests:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: lint-check

on: pull_request
on:
workflow_dispatch:
pull_request:

jobs:
eslint:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: type-check

on: pull_request
on:
workflow_dispatch:
pull_request:

jobs:
typescript:
Expand Down

0 comments on commit a9295ad

Please sign in to comment.