Skip to content

Commit 380fa2f

Browse files
committed
fix: updated node to v18
1 parent 86b6f36 commit 380fa2f

File tree

4 files changed

+1213
-1077
lines changed

4 files changed

+1213
-1077
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
node: [16]
14+
node: [18]
1515

1616
steps:
1717
- name: Checkout 🛎
@@ -35,7 +35,7 @@ jobs:
3535
run: npm run lint-fix
3636

3737
- name: Typecheck 👀
38-
run: npm run typecheck
38+
run: npm run typecheck
3939

4040
- name: Run tests 🧪
4141
run: npm run test:unit-coverage --if-present
@@ -47,4 +47,4 @@ jobs:
4747
env:
4848
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4949
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
50-
run: npx semantic-release
50+
run: npx semantic-release

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16
1+
v18

dist/types/SearchInput.types.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export declare const fieldType: readonly ["search", "text"];
2-
export type FieldType = typeof fieldType[number];
2+
export type FieldType = (typeof fieldType)[number];

0 commit comments

Comments
 (0)