chore(deps): update dependency astro to v5 #431
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: Linting | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
defaults: | |
run: | |
working-directory: client | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: 20 | |
- name: Install modules | |
run: npm ci | |
- name: Run lints | |
run: | | |
npm run lint:script | |
npm run lint:style | |
npm run lint:markup |