Skip to content

fix: Update CSpell version (8.8.1) (#480) #1040

fix: Update CSpell version (8.8.1) (#480)

fix: Update CSpell version (8.8.1) (#480) #1040

Workflow file for this run

name: " 🧪 Test"
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
test-node-versions:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
# List of supported node versions (latest is tested in `test-os`)
- 18.x
- 20.x
- 21.x
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- run: npm -v
- run: npm ci --omit=dev
- run: npm test
# Ensure the repository is clean after build & test
- run: git --no-pager diff --compact-summary --exit-code
test-os:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
# Test the latest node version here, move older versions to `test-old-node-versions`
- 18.x
os:
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --omit=dev
- run: npm test
# Ensure the repository is clean after build & test
- run: git --no-pager diff --compact-summary --exit-code
test-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build -t cspell .
- run: docker run -v $(pwd):/workdir cspell