Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Bump astro from 3.4.0 to 3.5.5 #17

Bump astro from 3.4.0 to 3.5.5

Bump astro from 3.4.0 to 3.5.5 #17

Workflow file for this run

name: Code style check
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
astro-check:
name: astro check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v2.4.0
- name: Set up node
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Set up problem matchers
run: echo "::add-matcher::.github/workflows/problem-matcher-astro-check.json"
- name: Run astro check
run: pnpm check