-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (36 loc) · 875 Bytes
/
lint.yml
File metadata and controls
38 lines (36 loc) · 875 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
---
name: Lint
run-name: Lint triggered by @${{ github.actor }}
on:
pull_request:
paths:
- 'src/**'
- '.eslintrc.cjs'
- '.eslintignore'
- '.prettierignore'
- '.prettierrc'
branches:
- main
types: ['opened', 'synchronize', 'reopened']
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Cache Bun
uses: actions/cache@v4
with:
path: ~/.bun/install/cache
key: linux-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
linux-bun-${{ hashFiles('**/bun.lock') }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint