Skip to content

Commit ccb7001

Browse files
committed
fix: install js-yaml dependency for CI workflow validation
actions/github-script@v7 does not bundle js-yaml, causing the validate job to fail with "Cannot find module 'js-yaml'".
1 parent a3ec95b commit ccb7001

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
- name: Install js-yaml
19+
run: npm install js-yaml
20+
1821
- name: Validate workflow syntax
1922
uses: actions/github-script@v7
2023
with:

0 commit comments

Comments
 (0)