Skip to content

build: setup eslint and prettier config #17

build: setup eslint and prettier config

build: setup eslint and prettier config #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
# TODO: Re-enable when NX Monorepo is fixed
# - name: Run linting, tests, build and typecheck
# run: pnpm exec nx run-many -t lint test build typecheck