-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
27 lines (24 loc) · 712 Bytes
/
Copy pathlambdatest.yaml
File metadata and controls
27 lines (24 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Browser testing on Lambdatest
on:
push:
branches:
- '*'
jobs:
test-tunnel:
runs-on: ubuntu-latest
steps:
- name: Start Tunnel
uses: LambdaTest/LambdaTest-tunnel-action@v2
id: tunnel
with:
user: ${{ secrets.LT_USERNAME }}
accessKey: ${{ secrets.LT_ACCESS_KEY }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- run: npm ci
- run: npm run test:lambdatest
env:
LT_USERNAME: ${{ secrets.LT_USERNAME }}
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}