We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d63c0 commit 4eb7239Copy full SHA for 4eb7239
.github/workflows/test.yml
@@ -28,5 +28,19 @@ jobs:
28
29
- name: Lint
30
run: npm run lint
31
-# - name: Test
32
-# run: npm run test
+
+ - name: Start Tunnel
33
+ uses: saucelabs/sauce-connect-action@v2
34
+ with:
35
+ username: ${{ secrets.SAUCE_USERNAME }}
36
+ accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
37
+ tunnelName: testcafe-provider
38
39
+ - name: Test
40
+ env:
41
+ SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
42
+ SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
43
+ SAUCE_TUNNEL_NAME: testcafe-provider
44
+ run: |
45
+ npm run link
46
+ npm run test
.gitignore
@@ -1,3 +1,4 @@
1
lib
2
node_modules
3
.vscode
4
+sauce-test-report.json
0 commit comments