Skip to content

Bump stylelint from 16.2.1 to 16.3.1 (#166) #386

Bump stylelint from 16.2.1 to 16.3.1 (#166)

Bump stylelint from 16.2.1 to 16.3.1 (#166) #386

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- '!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: [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@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm test