chore(deps-dev): bump eslint-plugin-astro from 0.34.0 to 1.2.3 #8
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: ci | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Check for build and type issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.15.3 | |
- name: Install dependencies | |
run: npm install | |
# use astro check for issues | |
- name: Run check | |
run: npm astro check | |
# ensure build works | |
- name: Run build | |
run: npm build |