We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adef2a1 commit 52d7530Copy full SHA for 52d7530
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+# .github/workflows/ci.yml
2
+name: CI – Cloudinary React Native SDK
3
+
4
+on: [push, pull_request]
5
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-22.04
9
10
+ steps:
11
+ - uses: actions/checkout@v3
12
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: 18
16
+ cache: npm
17
18
+ - run: npm ci
19
+ - run: npm run prepack
20
+ - run: npm test
.travis.yml
0 commit comments