Skip to content

Merge pull request #3 from elliott-with-the-longest-name-on-github/id… #17

Merge pull request #3 from elliott-with-the-longest-name-on-github/id…

Merge pull request #3 from elliott-with-the-longest-name-on-github/id… #17

Workflow file for this run

name: Quality
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- run: pnpm -F @sejohnson/svelte-themes build
- run: pnpm lint
check:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- run: pnpm -F @sejohnson/svelte-themes build
- run: pnpm check