Skip to content

Merge branch 'next' of github.com:pheralb/slug into next #49

Merge branch 'next' of github.com:pheralb/slug into next

Merge branch 'next' of github.com:pheralb/slug into next #49

Workflow file for this run

name: ⚙️ Check
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run linter
run: |
pnpm run lint
env:
SKIP_ENV_VALIDATION: true
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Run typecheck
run: pnpm run typecheck
env:
SKIP_ENV_VALIDATION: true