Skip to content

Commit f6d0d54

Browse files
Update workflows
1 parent f33f69e commit f6d0d54

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ description: Build Node.js project on push or pull request to master branch so w
33

44
on:
55
push:
6-
branches: ['master']
7-
pull_request:
8-
branches: ['master']
6+
workflow_dispatch:
97

108
jobs:
119
build:

.github/workflows/check_style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Check Style
22
description: Check code style using ESLint and Prettier on pull requests to ensure code quality and consistency.
33

44
on:
5-
pull_request:
6-
branches: ['master']
5+
push:
6+
workflow_dispatch:
77

88
jobs:
99
lint-format:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI - Test
22

33
on:
44
pull_request:
5-
types: [opened, synchronize, reopened]
5+
workflow_dispatch:
66

77
jobs:
88
test:

0 commit comments

Comments
 (0)