Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e793331

Browse filesBrowse files
Trotttargos
authored andcommitted
build: fix tools.yml errors
PR-URL: #40870 Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 9c200e1 commit e793331
Copy full SHA for e793331

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Collapse file

‎.github/workflows/tools.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/tools.yml
+3-3Lines changed: 3 additions & 3 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.