We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c095321 commit b6eaa32Copy full SHA for b6eaa32
.github/workflows/lambdatest.yaml
@@ -0,0 +1,27 @@
1
+name: Browser testing on Lambdatest
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
8
+jobs:
9
+ test-tunnel:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Start Tunnel
13
+ uses: LambdaTest/LambdaTest-tunnel-action@v2
14
+ id: tunnel
15
+ with:
16
+ user: ${{ secrets.LT_USERNAME }}
17
+ accessKey: ${{ secrets.LT_ACCESS_KEY }}
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-node@v4
20
21
+ node-version: 22.x
22
+ - run: npm ci
23
+ - run: npm run test:lambdatest
24
+ env:
25
+ LT_USERNAME: ${{ secrets.LT_USERNAME }}
26
+ LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
27
0 commit comments