ci: expand matrix to include Node 22 #601
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [main, next] | |
pull_request: | |
branches: [main, next] | |
schedule: | |
# Tuesdays at 14:45 UTC (10:45 EST) | |
- cron: 45 14 * * 1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
# ignore all-contributors PRs | |
if: ${{ !contains(github.head_ref, 'all-contributors') }} | |
name: ${{ matrix.check }} on Svelte ${{ matrix.svelte }}, Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
# enable OIDC for codecov uploads | |
permissions: | |
id-token: write | |
strategy: | |
fail-fast: false | |
matrix: | |
node: ['16', '18', '20', '22'] | |
svelte: ['3', '4', '5'] | |
check: | |
- test:vitest:jsdom | |
- test:vitest:happy-dom | |
- test:jest | |
- lint | |
- types:legacy | |
- types | |
exclude: | |
# Don't run lints or type checks on Node 16 | |
- { node: '16', check: 'lint' } | |
- { node: '16', check: 'types:legacy' } | |
- { node: '16', check: 'types' } | |
# Don't run legacy type checks on Svelte 5 | |
- { svelte: '5', check: 'types:legacy' } | |
# Don't run new type checks on Svelte 3 and 4 | |
- { svelte: '3', check: 'types' } | |
- { svelte: '4', check: 'types' } | |
# Don't run Svelte 3 on newer Node versions | |
- { svelte: '3', node: '22' } | |
# Only run Svelte 5 checks on newer Node versions | |
- { svelte: '5', node: '16' } | |
- { svelte: '5', node: '18' } | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 📥 Download deps | |
run: npm run install:${{ matrix.svelte }} | |
- name: ▶️ Run ${{ matrix.check }} | |
run: npm run ${{ matrix.check }} | |
- name: ⬆️ Upload coverage report | |
if: ${{ startsWith(matrix.check, 'test:') }} | |
uses: codecov/codecov-action@v5 | |
with: | |
use_oidc: true | |
fail_ci_if_error: true | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📥 Download deps | |
run: npm install --no-package-lock | |
- name: 🏗️ Build types | |
run: npm run build | |
- name: ⬆️ Upload types build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: types | |
path: types | |
release: | |
needs: [main, build] | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'testing-library/svelte-testing-library' && | |
contains('refs/heads/main,refs/heads/next', github.ref) && | |
github.event_name == 'push' }} | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📥 Downloads types build | |
uses: actions/download-artifact@v4 | |
with: | |
name: types | |
path: types | |
- name: 🚀 Release | |
uses: cycjimmy/semantic-release-action@v4 | |
with: | |
semantic_version: 24 | |
extra_plugins: | | |
conventional-changelog-conventionalcommits@8 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |