Skip to content

Bump eslint-config-stylelint from 19.1.0 to 20.0.0 #409

Bump eslint-config-stylelint from 19.1.0 to 20.0.0

Bump eslint-config-stylelint from 19.1.0 to 20.0.0 #409

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- '!dependabot/**'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
permissions:
contents: read
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [14, 16, 18, 20]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test