File tree 4 files changed +85
-0
lines changed
4 files changed +85
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : macOS
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : macOS-latest
11
+ steps :
12
+ - uses : actions/setup-node@v1
13
+ with :
14
+ node-version : 12.16.1
15
+ - uses : actions/checkout@v1
16
+ - name : Install esy
17
+ run : npm install -g esy@latest
18
+ - name : Build packages
19
+ run : |
20
+ esy '@fetch-core'
21
+ esy '@fetch-native-lwt'
22
+ - name : Run esy
23
+ run : esy
24
+ - name : Run tests
25
+ run : esy test
26
+ - name : Run example
27
+ run : esy example
Original file line number Diff line number Diff line change
1
+ name : Ubuntu
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/setup-node@v1
13
+ with :
14
+ node-version : 12.16.1
15
+ - uses : actions/checkout@v1
16
+ - name : Install esy
17
+ run : npm install -g esy@latest
18
+ - name : Build packages
19
+ run : |
20
+ esy '@fetch-core'
21
+ esy '@fetch-native-lwt'
22
+ - name : Run esy
23
+ run : esy
24
+ - name : Run tests
25
+ run : esy test
26
+ - name : Run example
27
+ run : esy example
Original file line number Diff line number Diff line change
1
+ name : Windows
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : window-latest
11
+ steps :
12
+ - uses : actions/setup-node@v1
13
+ with :
14
+ node-version : 12.16.1
15
+ - uses : actions/checkout@v1
16
+ - name : Install esy
17
+ run : npm install -g esy@latest
18
+ - name : Build packages
19
+ run : |
20
+ esy '@fetch-core'
21
+ esy '@fetch-native-lwt'
22
+ - name : Run esy
23
+ run : esy
24
+ - name : Run tests
25
+ run : esy test
26
+ - name : Run example
27
+ run : esy example
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ Provides a functor for creating and providing your own Fetch-implementation. The
15
15
16
16
## [ Fetch Native Lwt] ( ./src/fetch-native-lwt )
17
17
18
+ ![ Windows] ( https://github.com/lessp/fetch/workflows/Windows/badge.svg )
19
+ ![ macOS] ( https://github.com/lessp/fetch/workflows/macOS/badge.svg )
20
+ ![ Ubuntu] ( https://github.com/lessp/fetch/workflows/Ubuntu/badge.svg )
21
+
18
22
A consumable fetch-library for ReasonML/OCaml native. Uses ` Lwt ` for its ` Promise ` -implementation.
19
23
20
24
## Contributing
You can’t perform that action at this time.
0 commit comments