Skip to content

update to astro 3.0 #20

update to astro 3.0

update to astro 3.0 #20

Workflow file for this run

name: Main Branch Check
on:
push:
branches:
- main
paths:
- 'src/**/*.*'
- pnpm-lock.yaml
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Setup
uses: vkbansal/pnpm-setup-action@v1
- name: Lint
run: pnpm run lint
typecheck:
name: TypeCheck
runs-on: ubuntu-latest
steps:
- name: Setup
uses: vkbansal/pnpm-setup-action@v1
- name: Type Check
run: pnpm run typecheck
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Setup
uses: vkbansal/pnpm-setup-action@v1
- name: Prettier
run: pnpm run fmtc