Skip to content

Commit e793331

Browse files
Trotttargos
authored andcommitted
build: fix tools.yml errors
PR-URL: #40870 Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 9c200e1 commit e793331

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tools.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
CURRENT_VERSION=$(node -p "require('./node_modules/eslint/package.json').version")
2222
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
2323
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
24-
tools/update-eslint.sh
24+
./update-eslint.sh
2525
fi
2626
- id: "@babel/eslint-parser"
2727
run: |
@@ -30,15 +30,15 @@ jobs:
3030
CURRENT_VERSION=$(node -p "require('./node_modules/@babel/eslint-parser/package.json').version")
3131
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
3232
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
33-
tools/update-babel-eslint.sh
33+
./update-babel-eslint.sh
3434
fi
3535
- id: "lint-md dependencies"
3636
run: |
3737
cd tools/lint-md
3838
NEW_VERSION=$(npm outdated --omit=dev --parseable | cut -d: -f4 | xargs)
3939
if [ "$NEW_VERSION" != "" ]; then
4040
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
41-
rm -rf package-lock.json node_modules && npm install --ignore-scripts)
41+
rm -rf package-lock.json node_modules && npm install --ignore-scripts
4242
make lint-md-rollup
4343
fi
4444
steps:

0 commit comments

Comments
 (0)