loosen version constraint #953
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: javascript checks | |
on: [push, pull_request, workflow_dispatch, workflow_call] | |
jobs: | |
check: | |
strategy: | |
matrix: | |
os: [ubuntu, macos, windows] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull changes | |
run: git pull | |
continue-on-error: true | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install modules | |
run: bun install | |
- name: Run ESLint | |
run: bun -b lint | |
- name: Run Svelte Check | |
run: | | |
bun src/lib/utils/generateDeclarations.js | |
bun -b check |