Skip to content

Commit 2add4fb

Browse files
Merge pull request #303 from tkey/feat/PD-4301-Stack-upgrade
PD-4301: stack upgrade
2 parents 654beb4 + 7ad51a7 commit 2add4fb

File tree

39 files changed

+5286
-5454
lines changed

39 files changed

+5286
-5454
lines changed

.eslintignore

Lines changed: 0 additions & 25 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/backward.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Backward Compatibility Tests
2020
strategy:
2121
matrix:
22-
node: ["20.x"]
22+
node: ["22.x"]
2323
os: [ubuntu-latest]
2424

2525
runs-on: ${{ matrix.os }}

.github/workflows/buildMocks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Backward Compatibility Tests
1515
strategy:
1616
matrix:
17-
node: ["20.x"]
17+
node: ["22.x"]
1818
os: [ubuntu-latest]
1919

2020
runs-on: ${{ matrix.os }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
node: ["20.x"]
9+
node: ["22.x"]
1010
os: [ubuntu-latest]
1111

1212
runs-on: ${{ matrix.os }}

eslint.config.mjs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import toruslabsTypescript from "@toruslabs/eslint-config-typescript";
2+
3+
export default [
4+
...toruslabsTypescript,
5+
{
6+
languageOptions: {
7+
globals: {
8+
atob: true,
9+
btoa: true,
10+
document: true,
11+
fetch: true,
12+
jest: true,
13+
it: true,
14+
beforeEach: true,
15+
afterEach: true,
16+
describe: true,
17+
expect: true,
18+
chrome: true,
19+
FileSystem: true,
20+
FileEntry: true,
21+
},
22+
},
23+
},
24+
];

0 commit comments

Comments
 (0)