Skip to content

Migrating the Project to Astro + tweaking #21

Migrating the Project to Astro + tweaking

Migrating the Project to Astro + tweaking #21

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linting
run: pnpm run lint:ci