Skip to content

Commit 5db336e

Browse files
committed
rig e2e tests up to ci
1 parent 2bf4dd1 commit 5db336e

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

.github/workflows/test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: 'Release'
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- trunk
7+
jobs:
8+
test:
9+
permissions:
10+
actions: read
11+
checks: read
12+
contents: write
13+
deployments: read
14+
issues: read
15+
discussions: read
16+
packages: read
17+
pages: read
18+
pull-requests: read
19+
repository-projects: read
20+
security-events: read
21+
statuses: read
22+
runs-on: macos-11
23+
if: github.repository == 'seleniumhq/selenium-ide'
24+
steps:
25+
- uses: actions/checkout@v3
26+
- uses: actions/setup-node@v3
27+
with:
28+
node-version: '16.x'
29+
registry-url: 'https://registry.npmjs.org'
30+
- name: Install pnpm
31+
run: npm i -g pnpm@7
32+
- name: Install dependencies
33+
run: pnpm -r i
34+
- name: Build side-runner and selenium-ide
35+
run: pnpm run build
36+
- name: Test the side-runner
37+
run: npm run test:side-runner:ci

tests/examples/plugin.side

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"id": "fa9bae47-4a7e-4e92-9e02-e6863c13aaf1",
120120
"comment": "",
121121
"command": "assertTitle",
122-
"target": "Selenium IDE Tutorial : Definition, Features, Benefits | BrowserStack",
122+
"target": "Selenium IDE · Open source record and playback test automation for the web",
123123
"targets": [],
124124
"value": ""
125125
}

0 commit comments

Comments
 (0)