From 5d9707df56172d4bc76a49f56380baea7b5ccc23 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Mon, 22 May 2023 19:11:03 +0800 Subject: [PATCH] chore: add ci test for admin-next useful check tushan version is ready for current version code --- .github/workflows/admin.yaml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/admin.yaml diff --git a/.github/workflows/admin.yaml b/.github/workflows/admin.yaml new file mode 100644 index 00000000..b7d0af6a --- /dev/null +++ b/.github/workflows/admin.yaml @@ -0,0 +1,38 @@ +name: "Server Admin CI" + +on: + push: + branches: + - master + paths: + - "server/admin-next/**" + workflow_dispatch: + +jobs: + ci: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16.x] + steps: + - name: checkout + uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Cache pnpm modules + uses: actions/cache@v2 + with: + path: ~/.pnpm-store + key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}- + - uses: pnpm/action-setup@v2.0.1 + with: + version: latest + run_install: false + - name: Install packages + run: pnpm install --frozen-lockfile + - name: Check Build + run: pnpm build:admin-next