Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-11-19 12:18:06 +0300
committerGitHub <noreply@github.com>2021-11-19 12:18:06 +0300
commite0233fc7dc90bad14f7a38c2f2cf7e7a46a21e9c (patch)
treee6c81950476727a897a8271461c56e822f8f40fc /.github
parent4a7a18bbbe6444c425221f6327ddd072bd07194f (diff)
build: fix tools.yml errors
PR-URL: https://github.com/nodejs/node/pull/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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tools.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml
index 9924ebf6e68..e77ddfe60ac 100644
--- a/.github/workflows/tools.yml
+++ b/.github/workflows/tools.yml
@@ -21,7 +21,7 @@ jobs:
CURRENT_VERSION=$(node -p "require('./node_modules/eslint/package.json').version")
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
- tools/update-eslint.sh
+ ./update-eslint.sh
fi
- id: "@babel/eslint-parser"
run: |
@@ -30,7 +30,7 @@ jobs:
CURRENT_VERSION=$(node -p "require('./node_modules/@babel/eslint-parser/package.json').version")
if [ "$NEW_VERSION" != "$CURRENT_VERSION" ]; then
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
- tools/update-babel-eslint.sh
+ ./update-babel-eslint.sh
fi
- id: "lint-md dependencies"
run: |
@@ -38,7 +38,7 @@ jobs:
NEW_VERSION=$(npm outdated --omit=dev --parseable | cut -d: -f4 | xargs)
if [ "$NEW_VERSION" != "" ]; then
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
- rm -rf package-lock.json node_modules && npm install --ignore-scripts)
+ rm -rf package-lock.json node_modules && npm install --ignore-scripts
make lint-md-rollup
fi
steps: