Skip to content

feat: monorepo conversion — add @wdio/browserstack-service alongside the gRPC core #18

feat: monorepo conversion — add @wdio/browserstack-service alongside the gRPC core

feat: monorepo conversion — add @wdio/browserstack-service alongside the gRPC core #18

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- v8
permissions:
contents: read
jobs:
build-test:
name: Build & test (node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['18.20', '20', '22']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test