fourth commit

This commit is contained in:
Gitea
2026-04-16 15:14:47 +05:30
parent de657b42c1
commit aa335f76bf
588 changed files with 62329 additions and 4 deletions

View File

@@ -1,4 +1,20 @@
name: CI
# name: CI
# on:
# push:
# branches:
# - main
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: echo "Hello from Gitea Actions"
name: Node CI Test
on:
push:
@@ -6,9 +22,20 @@ on:
- main
jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Hello from Gitea Actions"
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test