chore: update deps (#145) #322
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 starter files | |
on: | |
push: | |
branches: | |
- main | |
tags: ['**'] | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint scripts | |
run: pnpm lint:js | |
- name: Lint styles | |
run: pnpm lint:css |