Skip to content
Merged
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
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,6 @@ jobs:
- uses: ./.github/actions/setup-node-and-node-modules
with:
node-version: 22
- uses: actions/cache@v4
with:
path: |
packages/*/dist
packages/*/tsconfig.build.tsbuildinfo
tsconfig.tsbuildinfo
key: lint-tools-${{ runner.arch }}-${{ runner.os }}-${{ github.sha }}
restore-keys: lint-tools-${{ runner.arch }}-${{ runner.os }}
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oxfmt and Oxlint do not have a cache mechanism. oxc-project/tsgolint does not support increment builds. Therefore, there are no files that should be cached in actions/cache.

- run: npm run lint
build:
runs-on: ubuntu-24.04-arm
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
"version": "./scripts/version.sh",
"build": "tsc -b tsconfig.build.json",
"lint": "run-s -c lint:*",
"lint:tsc": "tsc -b",
"lint:oxfmt": "oxfmt --check",
"lint:oxlint": "oxlint --type-aware",
"lint:oxlint": "oxlint --type-aware --type-check",
"lint-fix": "run-s -c lint-fix:*",
"lint-fix:oxfmt": "oxfmt --write",
"lint-fix:oxlint": "oxlint --type-aware --fix",
Expand Down