Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Bump stylelint-prettier from 4.0.2 to 4.1.0 #665

Bump stylelint-prettier from 4.0.2 to 4.1.0

Bump stylelint-prettier from 4.0.2 to 4.1.0 #665

Workflow file for this run

name: Lint & build
on:
pull_request:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18, 20 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies on Node v${{ matrix.node }}
run: npm install --ci
- name: Lint on Node v${{ matrix.node }}
run: npm run lint
- name: Check if project builds on Node v${{ matrix.node }}
run: npm run build