-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 992 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
# TODO: Experimental feature
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@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- name: 'Checkout'
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: 'Setup Bun'
uses: oven-sh/setup-bun@9b21598af8d4dfc302e5a30250007de0fda92acc # v1.1.1
- name: 'Setup dependencies'
run: bun install --production --frozen-lockfile --ignore-scripts
- name: 'Run lint'
run: bun run lint