Version 2.0.8 #112
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 check-js | |
- name: Stylelint checks | |
run: npm run check-sass | |
- name: Prettier checks | |
run: npm run check-style | |
tests: | |
name: Tests Node.js ${{ matrix.node-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: npm install | |
- name: AVA Tests | |
run: npx ava |