chore(ci): test complete runner
Runner test / test (push) Successful in 26s

This commit is contained in:
2026-08-31 17:21:58 +04:00
parent 1e1991a3ce
commit 985ed68038
4 changed files with 20 additions and 6 deletions
+9 -5
View File
@@ -6,9 +6,13 @@ on:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Hello
run: |
echo "Hello from Gitea Runner"
uname -a
docker --version
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: docker build -t bun-test .
- name: Run
run: docker run --rm bun-test
+7
View File
@@ -0,0 +1,7 @@
FROM oven/bun:1
WORKDIR /app
COPY index.ts .
CMD ["bun", "run", "index.ts"]
+1 -1
View File
@@ -1 +1 @@
console.log('Hello via Bun!');
console.log('Hello from Jimmy the Potato!');
+3
View File
@@ -8,5 +8,8 @@
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"start": "bun run index.ts"
}
}