Skip to content

Bump stylelint from 16.0.2 to 16.19.1 #97

Bump stylelint from 16.0.2 to 16.19.1

Bump stylelint from 16.0.2 to 16.19.1 #97

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Node v${{ matrix.node-version }} / stylelint v${{ matrix.stylelint }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20]
stylelint: [14, 15, 16]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install "stylelint@${{ matrix.stylelint }}"
npm install
- name: Version Check
run: |
node --version
npm ls stylelint
- name: Test packages
run: npm test