Skip to content

chore(deps-dev): bump cspell from 8.10.0 to 8.10.1 #771

chore(deps-dev): bump cspell from 8.10.0 to 8.10.1

chore(deps-dev): bump cspell from 8.10.0 to 8.10.1 #771

Workflow file for this run

name: "Test"
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
permissions:
contents: write
jobs:
test:
name: Test
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: ./.node-version
- run: yarn install
- run: xvfb-run -a yarn test
if: runner.os == 'Linux'
- run: yarn test
if: runner.os != 'Linux'
test-web:
name: Test Web
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: ./.node-version
- run: yarn install
- run: xvfb-run -a yarn test-web
if: runner.os == 'Linux'
- run: yarn test-web
if: runner.os != 'Linux'