Skip to content

Bump @wdio/cli from 9.2.1 to 9.4.1 #408

Bump @wdio/cli from 9.2.1 to 9.4.1

Bump @wdio/cli from 9.2.1 to 9.4.1 #408

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: 120
install-chromedriver: true
- uses: actions/cache@v2
with:
path: ~/.npm
key: v1/${{ runner.os }}/node-20/${{ hashFiles('**/package-lock.lock') }}
restore-keys: v1/${{ runner.os }}/node-20/
- name: Install dependencies
run: npm ci
- name: Run tests
uses: percy/[email protected]
with:
custom-command: "npm test"
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}