Skip to content

ci: Update ALL Dependencies (main) -- Workflow Bot (#2705) #3674

ci: Update ALL Dependencies (main) -- Workflow Bot (#2705)

ci: Update ALL Dependencies (main) -- Workflow Bot (#2705) #3674

name: "Integration Tests"
on:
pull_request:
paths-ignore:
- "docs/**"
push:
branches:
- main
paths-ignore:
- "docs/**"
jobs:
run-integration-tests:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [16.x]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3.7.0
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn --frozen-lockfile
- run: yarn build
- run: xvfb-run -a yarn run test-client-integration
if: runner.os == 'Linux'
- run: yarn run test-client-integration
if: runner.os != 'Linux'
# cspell:ignore xvfb