Skip to content

Fix(Explore Config): Errors should not be caught #225

Fix(Explore Config): Errors should not be caught

Fix(Explore Config): Errors should not be caught #225

Workflow file for this run

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