Skip to content

Merge pull request #23 from Hyuuh/next #69

Merge pull request #23 from Hyuuh/next

Merge pull request #23 from Hyuuh/next #69

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