gxc-renderer-base/.forgejo/workflows/ci.yml
Andrey Kernichniy d81ec87871
Some checks failed
CI / test (push) Failing after 6m17s
Added base CI
2026-03-01 21:47:58 +07:00

23 lines
480 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: [docker]
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