File tree 2 files changed +34
-4
lines changed
2 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 7
7
push :
8
8
9
9
jobs :
10
- test :
10
+ lint :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v3
19
19
- run : yarn install
20
20
21
21
- run : yarn lint
22
- - run : yarn typecheck
22
+
23
+ typecheck :
24
+ runs-on : ubuntu-latest
25
+ steps :
26
+ - uses : actions/checkout@v3
27
+ - uses : actions/setup-node@v3
28
+ with :
29
+ node-version-file : .nvmrc
30
+ cache : yarn
31
+
32
+ - run : yarn install
33
+
34
+ - run : yarn typecheck
35
+
36
+ swift-lint :
37
+ runs-on : macos-latest
38
+ steps :
39
+ - uses : actions/checkout@v3
40
+ - uses : actions/setup-node@v3
41
+ with :
42
+ node-version-file : .nvmrc
43
+ cache : npm
44
+
45
+ # - run: yarn install
46
+
47
+ - run : npm install
48
+ working-directory : example/ios
49
+
50
+ - run : pod install
51
+ working-directory : example/ios
52
+
53
+ - run : example/ios/Pods/SwiftLint/swiftlint lint
Original file line number Diff line number Diff line change 1
1
swift format -i -p -r ./targets ./ios ./example/ios
2
- example/ios/Pods/SwiftLint/swiftlint lint --fix
3
-
2
+ example/ios/Pods/SwiftLint/swiftlint lint --fix
You can’t perform that action at this time.
0 commit comments