Replace Svelte example with runes (v5.0.0+) and rm deprecated onmouse… #1666
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: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
- run: yarn --frozen-lockfile | |
- run: yarn test:mocha | |
- run: yarn test:tsc | |
- run: | | |
echo ::add-matcher::.github/eslint.json | |
yarn run eslint src test --format=compact | |
- run: yarn test:prettier | |
- run: yarn prepublishOnly | |
- run: yarn docs:build | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-output-changes | |
path: test/output/*-changed.* |