Skip to content

Commit

Permalink
Try github action again
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Nov 15, 2022
1 parent e487528 commit ff7847b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Before submitting a Pull Request, please test your code.
If you created a new created a new feature, then create the unit test function, too.

```bash
# COMPILE THE BACKEND SERVER
npm run build
# COMPILE TEST AUTOMATION PROGRAM
npm run build:test

# RUN THE TEST AUTOMATION PROGRAM
npm run test
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"typings": "lib/index.d.ts",
"scripts": {
"benchmark": "npm run build:test && node bin/benchmark",
"build": "rimraf lib && ttsc --removeComments --declaration false && ttsc --emitDeclarationOnly",
"build": "rimraf lib && ttsc --removeComments --declaration false && ttsc --emitDeclarationOnly && npm run build:test",
"build:test": "rimraf bin && ttsc -p tsconfig.test.json",
"build:test:prettier": "npm run build:test && prettier --write ./bin/**/*.js",
"dev": "npm run build -- --watch",
Expand Down

0 comments on commit ff7847b

Please sign in to comment.