Skip to content

Commit

Permalink
chore: small tweak (#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed May 19, 2021
1 parent ea31175 commit 8ba3e2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js ${{ env.node-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.node-version }}
node-version: ${{ matrix.node-version }}

- name: Use latest NPM
run: sudo npm i -g npm
Expand Down
2 changes: 1 addition & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
"*.js": ["prettier --write", "eslint --fix"],
"*.js": ["eslint --fix", "prettier --write"],
"*.{json,md,yml,css}": ["prettier --write"],
};

0 comments on commit 8ba3e2d

Please sign in to comment.