Skip to content

WIP: Separate app into workspaces #565

WIP: Separate app into workspaces

WIP: Separate app into workspaces #565

Workflow file for this run

name: Checks
on:
push:
branches: ['*']
pull_request:
branches: [master]
jobs:
build:
strategy:
matrix:
node-version: ['18.x', '20.x']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci --prefer-offline
- run: npx turbo checkformat
- run: npx turbo lint
- run: npx turbo build
- run: npx turbo test