Skip to content

Commit 0426a0d

Browse files
committed
chore: updated workflows
1 parent 403f4b0 commit 0426a0d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/eslint.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ on:
55
branches:
66
- '*'
77
paths:
8-
- "api/**"
9-
- "bot/**"
10-
- "web/**"
8+
- "**/*.js"
9+
- "**/*.jsx"
10+
- "**/*.ts"
11+
- "**/*.tsx"
12+
- "**/*.mjs"
1113
pull_request:
1214
types: [opened, reopened, synchronize]
1315

.github/workflows/lockb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: 'Dependabot: Update bun.lockb'
55
on:
66
pull_request:
77
paths:
8-
- "package.json"
8+
- "**/package.json"
99

1010
permissions:
1111
contents: write

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
],
1111
"scripts": {
1212
"dev": "turbo run dev",
13-
"lint": "eslint . --config eslint.config.mjs"
13+
"lint": "eslint . --config eslint.config.mjs",
14+
"build": "cd web && bun run build"
1415
},
1516
"devDependencies": {
1617
"@eslint/js": "^9.7.0",

0 commit comments

Comments
 (0)