Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ updates:
- 'eslint-*'
- '@eslint/*'
- '@eslint-react/*'
- 'typescript-eslint'
- '@vitest/eslint-plugin'
- 'oxfmt'
- 'oxlint'
- 'oxlint-*'
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,15 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Typecheck
run: node --run typecheck

- name: ESLint
run: node --run eslint
- name: Lint
run: |
node --run lint
node --run lint:md

- name: Oxfmt
- name: Format
run: node --run format:check

- name: Bundle
- name: Build lib
run: node --run build

- name: Build website
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,15 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Typecheck
run: node --run typecheck

- name: ESLint
run: node --run eslint
- name: Lint
run: |
node --run lint
node --run lint:md

- name: Oxfmt
- name: Format
run: node --run format:check

- name: Bundle
- name: Build lib
run: node --run build

- name: Build website
Expand Down
Loading