Skip to content

WebDriverIO v9

WebDriverIO v9 #61

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-source:
name: Check Source
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install packages
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Generate package
run: npm pack
- name: Upload artifact (Package)
uses: actions/upload-artifact@v4
with:
name: package
path: '*.tgz'
- name: prettier
run: npm run prettier:check
- name: eslint
run: npm run eslint:check
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
wdio-version: ['^8.0.0', '^9.0.0']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Force wdio version ${{ matrix.wdio-version }}
run: |
sed -i -e 's/"^8.0.0 || ^9.0.0"/"${{ matrix.wdio-version }}"/g' package.json
- name: Install packages
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test