gxc-renderer-base/.forgejo/workflows/ci.yml
Andrey Kernichniy f177ad4dfe
Some checks failed
CI / test (push) Failing after 2s
Added base CI
2026-03-01 23:13:24 +07:00

23 lines
481 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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