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'