Skip to content

Commit

Permalink
[ci] Test multiple OS with latest Node version
Browse files Browse the repository at this point in the history
Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Dec 9, 2024
1 parent 5d595cd commit 478a785
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: 'Test Selenium IDE'

on:
workflow_dispatch:
pull_request:
branches:
- trunk
Expand All @@ -19,26 +20,35 @@ jobs:
repository-projects: read
security-events: read
statuses: read
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest
runs-on: ${{ matrix.os }}
if: github.repository == 'seleniumhq/selenium-ide'
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8.11.0
version: 'latest'
- uses: actions/setup-node@v3
with:
node-version: '20.x'
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
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
- name: Run all tests and also use xvfb
if: matrix.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 &
export DISPLAY=:99
echo "DISPLAY=:99" >> $GITHUB_ENV
- name: Run all tests
run: |
npm run test:ci

0 comments on commit 478a785

Please sign in to comment.