Skip to content

chore(deps-dev): bump cspell from 8.6.0 to 8.8.1 #240

chore(deps-dev): bump cspell from 8.6.0 to 8.8.1

chore(deps-dev): bump cspell from 8.6.0 to 8.8.1 #240

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: ' 🧪 Test'
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '/package.json'
- pnpm-lock.yaml
- 'src/**'
- '.github/workflows/test.yml'
pull_request:
paths:
- '/package.json'
- pnpm-lock.yaml
- 'src/**'
- '.github/workflows/test.yml'
jobs:
test-node-versions:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [18.x, 20.x, 21.x]
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/install-build-test
with:
node-version: ${{ matrix.node-version }}
test-os:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [18.x]
os:
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/install-build-test
with:
node-version: ${{ matrix.node-version }}