ci: Workflow Bot -- Update ALL Dependencies (main) (#497) #1587
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: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
# Test supported Node versions | |
test-node-versions: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: | |
- 20.x | |
- 22.x | |
- 23.x | |
os: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: pnpm install | |
- run: pnpm test | |
# Test supported Operating Systems | |
test-os: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: | |
- 23.x | |
os: | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: pnpm install | |
- run: pnpm test |