Work towards configurable drivers and communication via bidi / postmessage #132
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Test Side Runner' | |
on: | |
pull_request: | |
branches: | |
- trunk | |
jobs: | |
test: | |
permissions: | |
actions: read | |
checks: read | |
contents: write | |
deployments: read | |
issues: read | |
discussions: read | |
packages: read | |
pages: read | |
pull-requests: read | |
repository-projects: read | |
security-events: read | |
statuses: read | |
runs-on: macos-11 | |
if: github.repository == 'seleniumhq/selenium-ide' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm -r i | |
- name: Build side-runner and selenium-ide | |
run: pnpm run build | |
- name: Run the tests | |
run: npm run test:setup | |
- name: Run the project examples as tests | |
run: npm run test:side-runner:ci |