Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
refactor: address 2022-10-11 set output change (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu authored Nov 2, 2022
1 parent bf5e8c1 commit 6de8d31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ runs:
id: detect-node
run: |
if [[ -z "${{ inputs.node-version }}" ]]; then
echo "::set-output name=version::$(cat .nvmrc | tr -d '\n')"
echo "version=$(cat .nvmrc | tr -d '\n')" >> $GITHUB_OUTPUT
else
echo "::set-output name=version::${{ inputs.node-version }}"
echo "version=${{ inputs.node-version }}" >> $GITHUB_OUTPUT
fi
shell: bash
- name: Install NodeJS
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn node lint-staged
yarn lint-staged

0 comments on commit 6de8d31

Please sign in to comment.