Skip to content

chore(deps): bump semver from 7.3.7 to 7.7.4 #5

chore(deps): bump semver from 7.3.7 to 7.7.4

chore(deps): bump semver from 7.3.7 to 7.7.4 #5

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Astro check
run: yarn check
- name: Lint
run: yarn lint
- name: Format check
run: yarn prettier --check .
- name: Build
run: yarn build