dev-deps: update dependency renovate to v39.28.0 #1656
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a Github Workflow that runs lint, formatter and unit tests on every | |
# push and pull request. | |
name: Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Checking code quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: yarn | |
- name: Setting up dependencies & workspaces | |
run: yarn install --immutable --immutable-cache && yarn run -T setup | |
- name: Checking linter | |
run: yarn run -T lint | |
- name: Checking format | |
run: yarn run -T format | |
- name: Checking typings | |
run: yarn run -T types-check |