chore(deps): update all non-major dependencies (#269) #142
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
name: QC Checks | |
on: | |
push: | |
branches-ignore: | |
- renovate/* | |
- stable | |
- beta | |
tags-ignore: | |
- "**" | |
jobs: | |
checks: | |
name: QC Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install | |
run: npm install | |
- name: ESLint checks | |
run: npm run eslint-check | |
- name: Stylelint checks | |
run: npm run stylelint-check | |
- name: Prettier checks | |
run: npm run prettier-check |