Skip to content

[WIP] [NOT CONFIRMED] Monorepo #5

[WIP] [NOT CONFIRMED] Monorepo

[WIP] [NOT CONFIRMED] Monorepo #5

Workflow file for this run

name: check
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
pnpm-version: [10.3.0]
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
- run: pnpm install
- run: pnpm -r check
- run: pnpm -r lint