Skip to content

탭 여백 z-index 수정 #5262

탭 여백 z-index 수정

탭 여백 z-index 수정 #5262

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
env:
TURBO_TEAM: penxle
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_REMOTE_ONLY: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter: [eslint, prettier, spellcheck, svelte, syncpack, typecheck]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run lint
run: bun run lint:${{ matrix.linter }}