-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (39 loc) · 980 Bytes
/
test.yml
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
40
41
42
43
44
45
46
47
name: "CI -> Test"
on:
workflow_dispatch:
push:
branches:
- dev
paths-ignore:
- "*.md"
- ".*ignore"
pull_request:
branches:
- dev
paths-ignore:
- "*.md"
- ".*ignore"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: "Harden Runner"
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
- name: "Setup Bun"
uses: oven-sh/setup-bun@123c6c4e2fea3eb7bffaa91a85eb6b3d505bf7af # v2
- name: "Checkout"
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
persist-credentials: false
- name: "Setup dependencies"
run: bun install --frozen-lockfile
- name: "Run lint"
run: bun run lint