Izk more bugfix #553
This file contains hidden or 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: Svelte code check | |
| on: | |
| pull_request: | |
| branches: [main, development, beta] | |
| workflow_dispatch: | |
| branches: [main, development, beta] | |
| push: | |
| branches: [main] | |
| jobs: | |
| sveltecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run svelte check | |
| run: yarn run check |