Skip to content

Commit

Permalink
fix: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Oct 9, 2023
1 parent 1d07749 commit 64b7446
Show file tree
Hide file tree
Showing 5 changed files with 401 additions and 413 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
NODE_OPTIONS: '--max-old-space-size=3200'
CC_TEST_REPORTER_ID: eae2fa40ae9e3d34015331647b26e69813f4a5fa5ccd7657147166508f4db8f3
steps:
- { uses: actions/checkout@v3, with: { persist-credentials: false } }
- { uses: actions/checkout@v4, with: { persist-credentials: false } }
- { uses: actions/setup-node@v3, with: { node-version: 18, cache: 'yarn' } }

- name: deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
env: { NODE_OPTIONS: '--max-old-space-size=3200' }
steps:
- { uses: actions/checkout@v3, with: { persist-credentials: false } }
- { uses: actions/checkout@v4, with: { persist-credentials: false } }
- { uses: actions/setup-node@v3, with: { node-version: 18, cache: 'yarn' } }
- { name: yarn, run: yarn --frozen-lockfile }

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
env: { NODE_OPTIONS: '--max-old-space-size=3200' }
steps:
- { uses: actions/checkout@v3, with: { persist-credentials: true } }
- { uses: actions/checkout@v4, with: { persist-credentials: true } }
- { uses: actions/setup-node@v3, with: { node-version: 18, cache: 'yarn' } }

# Cache for npm/npx in ~/.npm
Expand Down
2 changes: 1 addition & 1 deletion src/server/serverStatsMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const serverStatsHTMLHandler: BackendRequestHandler = (req, res) => {
_stringMapEntries(serverStatsMap),
([_, stat]) => _get(stat, sortBy),
false,
!asc,
asc ? 'asc' : 'desc',
).map(([endpoint, stat]) => {
return [
'<tr>',
Expand Down
Loading

0 comments on commit 64b7446

Please sign in to comment.