Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/tests-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- name: Check formatting
run: pnpm prettier
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
- name: Oxlint
run: pnpm lint:oxlint
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
- name: Lint
run: pnpm nx run-many --all --skip-nx-cache --target=lint --output-style=stream
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '26.1.0' }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
node-version: ${{ env.DEFAULT_NODE_VERSION }}
- name: Check formatting
run: pnpm prettier
- name: Oxlint
run: pnpm lint:oxlint
- name: Lint
run: pnpm nx run-many --all --skip-nx-cache --target=lint --output-style=stream

Expand Down
2 changes: 1 addition & 1 deletion docs/cli/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Besides the scripts for building and running the CLIs, there are others that mig
- `pnpm test`: Runs the tests of all the packages.
- `pnpm prettier`: Checks formatting for all linted source files.
- `pnpm prettier:fix`: Formats all linted source files.
- `pnpm lint`: Runs Prettier and ESLint checks for all the packages.
- `pnpm lint`: Runs Prettier, Oxlint, and ESLint checks for all the packages.
- `pnpm lint:fix`: Runs Prettier and ESLint for all the packages and fixes the fixable issues.
- `pnpm type-check`: Type-checks all the packagesusing the Typescript `tsc` tool.
- `pnpm clean`: Removes the `dist` directory from all the packages.
Expand Down
Loading
Loading