Skip to content

Commit

Permalink
Run astro check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Jan 14, 2025
1 parent 5c7270c commit e473220
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check

on:
push:
branches: [main]
pull_request:

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies
uses: pnpm/action-setup@v4
with:
run_install: true

- name: Run astro check
run: pnpm astro check

0 comments on commit e473220

Please sign in to comment.