Skip to content

Commit

Permalink
add build check for cases when dependabot update breaks the build
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillsud committed Nov 30, 2023
1 parent 589d24f commit 540f230
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"

Expand All @@ -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:
Expand Down

0 comments on commit 540f230

Please sign in to comment.