Skip to content

Upgrade: Bump stylelint from 16.2.0 to 16.3.1 #238

Upgrade: Bump stylelint from 16.2.0 to 16.3.1

Upgrade: Bump stylelint from 16.2.0 to 16.3.1 #238

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@v3
# https://github.com/pnpm/action-setup
- uses: pnpm/action-setup@v2
with:
version: 6
# https://github.com/actions/setup-node
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: npm run lint
- name: Test
run: npm test