gxc-renderer-base/.forgejo/workflows/ci.yml
Andrey Kernichniy c1be753c08
Some checks are pending
CI / test (push) Waiting to run
Added base CI
2026-03-01 21:35:50 +07:00

23 lines
479 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