Added base CI
Some checks are pending
CI / test (push) Waiting to run

This commit is contained in:
Andrey Kernichniy 2026-03-01 21:35:50 +07:00
parent 26e8760bc4
commit c1be753c08

23
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,23 @@
name: CI
on:
push:
branches: [main]
workflow_dispatch: # позволяет запускать вручную
jobs:
test:
# Название runnerа, который у тебя настроен
runs-on: default
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install