Bump stylelint from 16.8.2 to 16.10.0 #264
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |