Skip to content

[ci] Test multiple OS with latest Node version #224

[ci] Test multiple OS with latest Node version

[ci] Test multiple OS with latest Node version #224

Workflow file for this run

name: 'Test Selenium IDE'
on:
workflow_dispatch:
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
matrix:

Check failure on line 23 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test Selenium IDE

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 23, Col: 5): Unexpected value 'matrix'
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest
runs-on: ${{ matrix.os }}
if: github.repository == 'seleniumhq/selenium-ide'
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 'latest'
- uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'pnpm'
- name: Install dependencies
run: pnpm -r i
- name: Build side-runner and selenium-ide
run: npm run build
- name: Install xvfb
if: runner.os == 'ubuntu-latest'
run: |
sudo apt-get update -y && sudo apt-get install -y libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb
Xvfb -ac :99 -screen 0 1280x1024x16 > /dev/null 2>&1 &
echo "DISPLAY=:99" >> $GITHUB_ENV
- name: Run all tests
run: |
npm run test:ci