Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #88

Merged
merged 5 commits into from
Jul 9, 2024
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
18 changes: 6 additions & 12 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,9 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Use Node.js
uses: actions/setup-node@v4

- name: Install dependencies
run: npm install --ignore-scripts

- name: Linter
run: npm run format:ci
- name: Checkout
uses: actions/checkout@v4
- name: Setup Biome
uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci .
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build:
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20, 22]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
permissions:
Expand Down
131 changes: 0 additions & 131 deletions benchmark/bench-cmp-branch.js

This file was deleted.

36 changes: 0 additions & 36 deletions benchmark/bench-thread.js

This file was deleted.

168 changes: 0 additions & 168 deletions benchmark/bench.js

This file was deleted.

6 changes: 3 additions & 3 deletions benchmark/parse.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import native from "node:querystring";
import awsQueryStringParser from "@aws-sdk/querystring-parser";

Check warning on line 2 in benchmark/parse.mjs

View check run for this annotation

Codecov / codecov/patch

benchmark/parse.mjs#L2

Added line #L2 was not covered by tests
import benchmark from "cronometro";
import qs from "qs";
import fastQueryString from "../lib/index.js";
import native from "node:querystring";
import queryString from "query-string";
import querystringify from "querystringify";
import awsQueryStringParser from "@aws-sdk/querystring-parser";
import querystringparser from "querystringparser";
import fastQueryString from "../lib/index.js";

Check warning on line 8 in benchmark/parse.mjs

View check run for this annotation

Codecov / codecov/patch

benchmark/parse.mjs#L8

Added line #L8 was not covered by tests

const input = "frappucino=muffin&goat=scone&pond=moose&foo=bar&foo=baz";

Expand Down
Loading