Skip to content

chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 #1549

chore(deps): bump actions/checkout from 5.0.0 to 5.0.1

chore(deps): bump actions/checkout from 5.0.0 to 5.0.1 #1549

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`)
- 20.x
- 22.x
- 24.x
- 25.x
os:
- ubuntu-latest
include:
- os: windows-latest
node-version: 24.x
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- 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-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- run: docker build -t cspell .
- run: docker run -v $(pwd):/workdir cspell .