Skip to content

Bump stylelint from 16.8.2 to 16.9.0 #260

Bump stylelint from 16.8.2 to 16.9.0

Bump stylelint from 16.8.2 to 16.9.0 #260

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Lint and test
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v4
# https://github.com/pnpm/action-setup
- uses: pnpm/action-setup@v3
with:
version: 6
# https://github.com/actions/setup-node
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: npm run lint
- name: Test
run: npm test