chore(deps-dev): Bump postcss from 8.4.16 to 8.4.33 #390
Workflow file for this run
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: Lint pull requests or commits | |
on: | |
push: | |
branches: | |
- main | |
- '**' | |
pull_request: | |
branches: | |
- main | |
- '**' | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- name: Install pnpm dependencies | |
run: pnpm install | |
- name: Lint code | |
run: pnpm run lint |