chore: Workflow Bot -- Update ALL Dependencies (main) #1038
Workflow file for this run
This file contains 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`) | |
- 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 |