We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0355ba commit 072ccf3Copy full SHA for 072ccf3
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ permissions:
9
contents: read
10
11
concurrency:
12
- group: code-quality-${{ github.ref }}
+ group: ci-${{ github.ref }}
13
cancel-in-progress: true
14
15
jobs:
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+permissions:
+ contents: read
+concurrency:
+ group: test-${{ github.ref }}
+ cancel-in-progress: true
+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