Skip to content

fix: package.json to reduce vulnerabilities #528

fix: package.json to reduce vulnerabilities

fix: package.json to reduce vulnerabilities #528

Workflow file for this run

name: CI
on: [push, fork, pull_request, workflow_dispatch, workflow_call]
jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
lint:
strategy:
matrix:
os: [ubuntu, windows, macos]
fail-fast: false
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: Pull changes
run: git pull
continue-on-error: true
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Set node
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: pnpm
- name: Install
run: pnpm install
- name: Lint
run: pnpm lint
- name: Astro check
run: pnpm astro sync && pnpx @astrojs/check
- name: Svelte check
run: pnpx svelte-check