gxc-renderer-base/.forgejo/workflows/ci.yml
Andrey Kernichniy 7cc25a176e
All checks were successful
CI / test (push) Successful in 43s
Update build
2026-03-02 01:05:17 +07:00

27 lines
539 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 ci
- name: Install dependencies
run: npm run build