feat(svelte5): incorporate Svelte 5 support into main entry point #418
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: 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: Node ${{ matrix.node }}, Svelte ${{ matrix.svelte }}, ${{ matrix.test-runner }} | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: ['16', '18', '20'] | |
svelte: ['3', '4'] | |
test-runner: ['vitest:jsdom', 'vitest:happy-dom', 'jest'] | |
experimental: [false] | |
include: | |
- node: '20' | |
svelte: 'next' | |
test-runner: 'vitest:jsdom' | |
experimental: true | |
- node: '20' | |
svelte: 'next' | |
test-runner: 'vitest:happy-dom' | |
experimental: true | |
- node: '20' | |
svelte: 'next' | |
test-runner: 'jest' | |
experimental: true | |
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 install --no-package-lock | |
npm install --no-save svelte@${{ matrix.svelte }} | |
- name: ▶️ Run tests | |
run: npm run test:${{ matrix.test-runner }} | |
- name: ▶️ Run type-checks | |
if: ${{ matrix.node == '20' && matrix.svelte == '4' && matrix.test-runner == 'vitest:jsdom' }} | |
run: npm run types | |
- name: ⬆️ Upload coverage report | |
uses: codecov/codecov-action@v3 | |
release: | |
needs: main | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'testing-library/svelte-testing-library' && | |
contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha', | |
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: 16 | |
- name: 📥 Download deps | |
run: npm install --no-package-lock | |
- name: 🚀 Release | |
uses: cycjimmy/semantic-release-action@v2 | |
with: | |
semantic_version: 17 | |
branches: | | |
[ | |
'+([0-9])?(.{+([0-9]),x}).x', | |
'main', | |
'next', | |
'next-major', | |
{name: 'beta', prerelease: true}, | |
{name: 'alpha', prerelease: true} | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |