Add GitHub Actions workflow for testing
All checks were successful
Test Runner / test (push) Successful in 7m9s
All checks were successful
Test Runner / test (push) Successful in 7m9s
This commit is contained in:
18
.gitea/workflows/test.yaml
Normal file
18
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Test Runner
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Hello
|
||||
run: |
|
||||
echo "🎉 Runner 정상 작동!"
|
||||
echo "Node version: $(node -v)"
|
||||
npm -v
|
||||
Reference in New Issue
Block a user