Skip to content

fix: add follow_redirects=True to all httpx stream calls (#764) #563

fix: add follow_redirects=True to all httpx stream calls (#764)

fix: add follow_redirects=True to all httpx stream calls (#764) #563

name: SvelteKit Lint
on:
pull_request:
paths:
- "kit/**"
- ".github/workflows/lint-svelte-kit.yml"
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install ci
working-directory: kit
- name: Checking lint/format errors
run: npm run lint
working-directory: kit
- name: Checking type errors
run: npm run check
working-directory: kit