Skip to content

Commit 1eaec4c

Browse files
committed
ci: make linting optional, bump jsbt.
1 parent 0af3708 commit 1eaec4c

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
release-js:
77
name: 'jsbt v0.4.1'
8-
uses: paulmillr/jsbt/.github/workflows/release.yml@2ad4cdd723e15885d7437261a75a4fa39f526020
8+
uses: paulmillr/jsbt/.github/workflows/release.yml@df058af02b73017cd1f281d85bf4360e07790db6
99
with:
1010
build-path: test/build
1111
# slow-types: false

.github/workflows/test-ts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ on:
55
jobs:
66
test-js:
77
name: 'jsbt v0.4.1'
8-
uses: paulmillr/jsbt/.github/workflows/test-ts.yml@2ad4cdd723e15885d7437261a75a4fa39f526020
8+
uses: paulmillr/jsbt/.github/workflows/test-ts.yml@df058af02b73017cd1f281d85bf4360e07790db6

index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ const concatBytes = (...arrs: Bytes[]): Bytes => {
122122
const randomBytes = (len: number = L): Bytes => {
123123
const c = cr();
124124
return c.getRandomValues(u8n(len));
125-
126125
};
127126
const big = BigInt;
128127
const arange = (n: bigint, min: bigint, max: bigint, msg = 'bad number: out of range'): bigint =>

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"build": "tsc",
2222
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
2323
"bench": "node test/benchmark.ts",
24-
"lint": "prettier --check 'index.ts' 'test/*.{js,ts}'",
2524
"format": "prettier --write 'index.ts' 'test/*.{js,ts}'",
2625
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning test/index.ts",
2726
"test:bun": "bun test/index.ts",

0 commit comments

Comments
 (0)