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
21 changes: 10 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,26 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v6

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version-file: .nvmrc
cache: pnpm

- name: Install dependencies
run: |
if [ -f package-lock.json ]; then
npm ci --no-audit --no-fund
else
npm install --no-audit --no-fund
fi
run: pnpm install --frozen-lockfile

- name: Lint
run: npm run lint
run: pnpm lint

- name: Format
run: npm run fmt:check
run: pnpm fmt:check

- name: Build
run: npm run build
run: pnpm build

- name: Test
run: npm run test:ci
run: pnpm test:ci
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,21 @@
},
"dependencies": {
"discord.js": "^14.26.4",
"node-cron": "^4.2.1",
"node-cron": "^4.6.0",
"typescript": "^6.0.3",
"web-features": "^3.9.2"
"web-features": "^3.32.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/node": "^24.5.2",
"@types/node": "^24.13.2",
"@types/node-cron": "^3.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"tsc-alias": "^1.8.17",
"tsup": "^8.5.0",
"tsx": "^4.20.6"
"lint-staged": "^17.0.8",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"oxlint-tsgolint": "^0.24.0",
"tsc-alias": "^1.9.0",
"tsup": "^8.5.1",
"tsx": "^4.23.0"
},
"lint-staged": {
"*.{js,ts}": "pnpm run lint",
Expand Down
Loading
Loading