Skip to content

Refactor test configuration for explore-config package #305

Refactor test configuration for explore-config package

Refactor test configuration for explore-config package #305

Workflow file for this run

name: Type Check
on:
push:
branches:
- "**"
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
jobs:
type-check:
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: pnpm install
- run: pnpm run build
- run: pnpm run type-check