Skip to content

Version 2.0.8

Version 2.0.8 #112

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