TTMT.ManageWebGUI/.gitea/workflows/ci.yml
phuongdm be8cc76b08
Some checks failed
CI / build-test (push) Failing after 3m9s
Deploy Staging (Docker) / deploy (push) Failing after 7s
fix UI and add CI/CD 2
2026-05-10 21:51:32 +07:00

34 lines
542 B
YAML

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: docker
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