Bump astro from 5.2.3 to 5.2.5 in the npm group #9
Workflow file for this run
This file contains hidden or 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: Check | |
on: | |
- pull_request | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
name: Run checks | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install NPM dependencies | |
run: npm install | |
- name: Check Astro | |
run: npm run astro check --minimumFailingSeverity warning | |
- name: Check Prettier | |
run: npm run prettier-check | |
- name: Build Astro | |
run: npm run build |