Skip to content

Commit 072ccf3

Browse files
committed
feat: added test workflow
1 parent d0355ba commit 072ccf3

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010

1111
concurrency:
12-
group: code-quality-${{ github.ref }}
12+
group: ci-${{ github.ref }}
1313
cancel-in-progress: true
1414

1515
jobs:

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
permissions:
9+
contents: read
10+
11+
concurrency:
12+
group: test-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
test:
17+
name: Test
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: ./.github/actions/ci-setup
22+
with:
23+
bun-version: latest
24+
25+
- name: Run Tests
26+
run: bun test

0 commit comments

Comments
 (0)