File tree 5 files changed +13
-8
lines changed
5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 11
11
lint :
12
12
name : lint
13
13
runs-on : ubuntu-latest
14
- if : github.repository == 'muxinc/mux-node-sdk'
14
+
15
15
16
16
steps :
17
17
- uses : actions/checkout@v4
@@ -22,16 +22,13 @@ 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
34
- if : github.repository == 'muxinc/mux-node-sdk'
35
32
36
33
steps :
37
34
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1
1
configured_endpoints : 95
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/mux-18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux -18719ca6ce788802354c14b482fb6fd5d333a613f13991115df9c805d7ab5a69.yml
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