Skip to content

Commit

Permalink
Merge pull request #1008 from github/edoardo/no-fail-12.12
Browse files Browse the repository at this point in the history
Avoid failure if `@types/node` is already 12.12
  • Loading branch information
edoardopirovano committed Mar 30, 2022
2 parents 4d339ae + a9095ce commit 894face
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/pr-checks.yml
Expand Up @@ -46,11 +46,13 @@ jobs:
# `npm install` on Linux.
npm install
git config --global user.email "github-actions@github.com"
git config --global user.name "github-actions[bot]"
# The period in `git add --all .` ensures that we stage deleted files too.
git add --all .
git commit -m "Use @types/node=${NODE_TYPES_VERSION}"
if [ ! -z "$(git status --porcelain)" ]; then
git config --global user.email "github-actions@github.com"
git config --global user.name "github-actions[bot]"
# The period in `git add --all .` ensures that we stage deleted files too.
git add --all .
git commit -m "Use @types/node=${NODE_TYPES_VERSION}"
fi
- name: Check generated JS
run: .github/workflows/script/check-js.sh
Expand Down

0 comments on commit 894face

Please sign in to comment.