Skip to content

Commit e423422

Browse files
committed
fix GitHub Actions
1 parent 03702bb commit e423422

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Run prettier
2525
run: |
2626
shopt -s globstar
27-
npx prettier -w ts/**/*.ts
27+
npx prettier -w src/**/*.ts
2828
- run: echo "::add-matcher::.github/diff.json"
2929
- name: Show diff
3030
run: |

.github/workflows/javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
true
2828
- run: |
29-
! find src/ -type f -name '*.js' -exec node -c '{}' \; 2>&1 \
29+
! find dist/ -type f -name '*.js' -exec node -c '{}' \; 2>&1 \
3030
|awk 'BEGIN {m=0} /(.js):[0-9]+$/ {m=1; printf "%s - ",$0} m==1 && /^SyntaxError/ { m=0; print }' \
3131
|sed "s@$(pwd)@.@" \
3232
|grep '^'

.github/workflows/typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
node-version: "22"
5454
cache: "npm"
5555
- run: npm install
56-
- run: rm -R src/**/*.js
56+
- run: rm -R dist/**/*.js
5757
- run: |
5858
npx tsc
5959
- run: echo "::add-matcher::.github/diff.json"

0 commit comments

Comments
 (0)