1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-19 18:34:45 +00:00

refactor(ci): separate build and lint steps in CI workflow

This commit is contained in:
2026-02-14 22:52:00 +07:00
parent 49b9f2aa79
commit ab9f45f908

View File

@@ -31,5 +31,11 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm build && pnpm test
run: pnpm test