test: add simple typing tests #246
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] | |
pull_request: | |
branches: [main] | |
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 }} | |
strategy: | |
matrix: | |
node: ['16', '18', '20'] | |
svelte: ['3', '4'] | |
runs-on: ubuntu-latest | |
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: ▶️ Test | |
run: npm test | |
- name: ▶️ Lint and type-check | |
if: ${{ matrix.node == '20' && matrix.svelte == '4' }} | |
run: | | |
npm run lint | |
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 }} |