Skip to content

Commit 2b9a9db

Browse files
Update workflows
1 parent f33f69e commit 2b9a9db

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: CI - Test
22

33
on:
4+
push:
45
pull_request:
5-
types: [opened, synchronize, reopened]
6+
workflow_dispatch:
67

78
jobs:
89
test:

0 commit comments

Comments
 (0)