From 36a3606557548d7a724065809bf7926264407462 Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 10 Apr 2024 17:09:40 +0300 Subject: [PATCH] gh-action-fix --- .github/workflows/node-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 2d2d4bc8..7ad10c50 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -13,12 +13,12 @@ jobs: run: npm ci - name: Check types - run: npm run typecheck + run: npm run check:types - - name: Lint with Biome - run: npx biome ci . + - name: Check code + run: npx run check:code - - name: Lint styles + - name: Check styles run: npm run lint:styles - name: Test production build