TTMT.ManageWebGUI/.gitea/workflows/ci.yml
phuongdm 9cd61df647
Some checks are pending
CI / build-test (push) Waiting to run
Deploy Staging (Docker) / deploy (push) Waiting to run
fix UI and add CI/CD
2026-05-10 21:48:22 +07:00

34 lines
549 B
YAML

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22.14.0
cache: npm
- name: Install deps
run: npm ci
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: dist
path: dist