Skip to content

Commit

Permalink
update yarn commands
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kybound committed Apr 9, 2024
1 parent dd20509 commit 6b198c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
node-version: 20
cache: yarn
- run: yarn install
- run: yarn format
- run: yarn format:ci
- run: yarn eslint
- run: yarn test
- run: yarn test-coverage
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
"scripts": {
"build-libs": "npx ts-node ./src/compile-libs.ts",
"test": "jest",
"lint": "eslint --ignore-path .eslintignore --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
"eslint": "eslint --ignore-path .eslintignore --ext .ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format:ci": "prettier --ignore-path .gitignore --list-different \"**/*.+(js|ts|json)\""
},
"meta": {},
"devDependencies": {
Expand Down

0 comments on commit 6b198c5

Please sign in to comment.