Skip to content

Bump the npm group with 3 updates #44

Bump the npm group with 3 updates

Bump the npm group with 3 updates #44

Workflow file for this run

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@v4
- 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