From 5684ca97f8bdc2863d274cff3e932cc3cb33c83a Mon Sep 17 00:00:00 2001 From: leowla Date: Tue, 26 May 2026 22:36:00 +1200 Subject: [PATCH] ci: add vite build check to frontend --- .github/workflows/frontend-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index d997c306..3f20a51d 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -31,3 +31,20 @@ jobs: - run: yarn install --frozen-lockfile - run: yarn prettier - run: yarn lint + + build: + name: build + needs: lint-format + runs-on: ubuntu-latest + defaults: + run: + working-directory: frontend + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '24' + cache: 'yarn' + cache-dependency-path: frontend/yarn.lock + - run: yarn install --frozen-lockfile + - run: yarn build