chore(deps): update micropip requirement from ~=0.6.0 to ~=0.8.0 #508
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 lint | |
- name: Run Svelte Check | |
run: | | |
bun src/lib/utils/generateDeclarations.js | |
bun -b check |