From 9fbe4e69f56263d5d5adc79a4afaa5866907bfd6 Mon Sep 17 00:00:00 2001 From: MikeDiam Date: Wed, 14 Aug 2024 14:03:56 +0300 Subject: [PATCH] [publish build] add build check action --- .github/workflows/build-check.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index 989d3259..033151ff 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -5,8 +5,8 @@ on: branches: [ main, prod ] jobs: - check_sdk_branch: - name: Main branch + build_check: + name: Build check runs-on: ubuntu-latest permissions: contents: read @@ -20,5 +20,9 @@ jobs: with: node-version: '18.x' + - name: Install npm dependencies + run: 'npm ci --ignore-scripts' + shell: bash + - name: Run Build check - run: 'npm run build' + run: 'npm run rollup'