Commit 139e690 1 parent 2b1bc88 commit 139e690 Copy full SHA for 139e690
File tree 4 files changed +11
-5
lines changed
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,10 @@ jobs:
22
22
node-version : ' 18'
23
23
24
24
- name : Install dependencies
25
- run : |
26
- yarn install
25
+ run : yarn install
27
26
28
27
- name : Check types
29
- run : |
30
- yarn build
28
+ run : ./scripts/lint
31
29
test :
32
30
name : test
33
31
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ cd " $( dirname " $0 " ) /.."
6
+
7
+ echo " ==> Running eslint --fix"
8
+ ./node_modules/.bin/eslint --fix --ext ts,js .
Original file line number Diff line number Diff line change 4
4
5
5
cd " $( dirname " $0 " ) /.."
6
6
7
+ echo " ==> Running eslint"
7
8
./node_modules/.bin/eslint --ext ts,js .
Original file line number Diff line number Diff line change 52
52
echo
53
53
fi
54
54
55
- # Run tests
56
55
echo " ==> Running tests"
57
56
./node_modules/.bin/jest " $@ "
You can’t perform that action at this time.
0 commit comments