Skip to content

docs: add Vietnamese IDE/AI integration guide #18

docs: add Vietnamese IDE/AI integration guide

docs: add Vietnamese IDE/AI integration guide #18

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build workspace
run: pnpm -r build
- name: Test workspace
run: pnpm -r test
- name: Verify release artifacts
run: pnpm run release:check