From 540f2305b5c4974fdd26ef1fdc10612fe211d047 Mon Sep 17 00:00:00 2001 From: Kirill Sudarushkin Date: Thu, 30 Nov 2023 10:36:24 +0100 Subject: [PATCH] add build check for cases when dependabot update breaks the build --- .github/workflows/quality.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index d791bc64d..211fa23c5 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -13,14 +13,14 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Read .nvmrc run: echo ::set-output name=NVMRC::$(cat .nvmrc) id: nvm - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: "${{ steps.nvm.outputs.NVMRC }}" @@ -33,6 +33,9 @@ jobs: - name: Check format run: yarn prettier --check ./examples + - name: Check build + run: yarn run build + - name: Check python code uses: psf/black@stable with: