Skip to content

Commit 955a04c

Browse files
committed
Create CI Workflow
1 parent 27b7caa commit 955a04c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
permissions: {}
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
hello:
12+
timeout-minutes: 10
13+
permissions:
14+
contents: read
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
with:
19+
persist-credentials: false
20+
- uses: ./.github/actions/setup
21+
22+
- run: bun run ./actions/ci/hello
23+
- uses: ./actions/ci/hello

0 commit comments

Comments
 (0)