No redirect to login page prior to auth registration. #525
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 check (types and a11y) | |
| on: | |
| pull_request: | |
| branches: ['main'] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - run: npm ci | |
| name: Install dependencies | |
| - run: npx svelte-kit sync | |
| name: Sync svelte-kit | |
| - run: npx svelte-check --tsconfig ./tsconfig.json .svelte-kit | |
| name: Run svelte-check |