-
-
Notifications
You must be signed in to change notification settings - Fork 126
39 lines (36 loc) · 676 Bytes
/
lint.yml
File metadata and controls
39 lines (36 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Code Quality Check
on:
push:
branches:
- develop
paths:
- '**.ts'
- '**.js'
- '**.json'
- '**.css'
- '!dist/**'
- '!cypress/**'
pull_request:
branches:
- develop
paths:
- '**.ts'
- '**.js'
- '**.json'
- '**.css'
- '!dist/**'
- '!cypress/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Dependencies
run: bun install
- name: Lint
run: bun run lint
- name: Type Check
run: bun run check