Skip to content

chore: Add support for running tests & prettier in CI #4

chore: Add support for running tests & prettier in CI

chore: Add support for running tests & prettier in CI #4

Workflow file for this run

# Workflow for running automated tests.
name: WebdriverIO Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Npm Install
run: npm install
- name: Run Tests
run: npm run test