Skip to content

Commit b84def1

Browse files
committed
feat: Run check in GH actions
1 parent 1b7f487 commit b84def1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "[all] check"
2+
3+
on:
4+
push:
5+
branches: [main]
6+
tags: ["v*"]
7+
pull_request:
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Setup bun
18+
uses: oven-sh/setup-bun@v2
19+
- name: Install dependencies
20+
run: bun install
21+
- name: Run check
22+
run: bun run check

0 commit comments

Comments
 (0)