chore: Workflow Bot -- Update ALL Dependencies (main) #1564
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v5 | |
| - run: docker build -t cspell . | |
| - run: docker run -v $(pwd):/workdir cspell . |