Skip to content

Commit

Permalink
Add yarn install and execution permission to the pr_check.sh (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
OliviaHY authored Sep 28, 2021
1 parent a1763e9 commit 5c78f5d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions pr_check.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

yarn run lint
npm install tslint
npm install typescript
npm install mocha
npm install yarn

yarn test
CURRENT_DIR=$(pwd)

$CURRENT_DIR/node_modules/yarn/bin/yarn run lint

$CURRENT_DIR/node_modules/yarn/bin/yarn test

0 comments on commit 5c78f5d

Please sign in to comment.