File tree Expand file tree Collapse file tree 4 files changed +11
-15
lines changed
Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,14 @@ jobs:
1010 test :
1111 runs-on : ubuntu-latest
1212
13- strategy :
14- matrix :
15- node-version : [22.x]
16-
1713 steps :
1814 - name : Checkout code
1915 uses : actions/checkout@v4
2016
21- - name : Setup Node.js ${{ matrix.node-version }}
17+ - name : Setup Node.js
2218 uses : actions/setup-node@v4
2319 with :
24- node-version : ${{ matrix.node-version }}
20+ node-version : 22.x
2521
2622 - name : Setup pnpm
2723 uses : pnpm/action-setup@v4
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export default [
2020 languageOptions : {
2121 parser : tsParser ,
2222 parserOptions : {
23- ecmaVersion : 2020 ,
23+ ecmaVersion : 2022 ,
2424 sourceType : 'module' ,
2525 } ,
2626 } ,
@@ -34,7 +34,7 @@ export default [
3434 languageOptions : {
3535 parser : tsParser ,
3636 parserOptions : {
37- ecmaVersion : 2020 ,
37+ ecmaVersion : 2022 ,
3838 sourceType : 'module' ,
3939 } ,
4040 globals : {
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "module" : " commonjs" ,
4- "target" : " ES2020 " ,
4+ "target" : " es2022 " ,
55 "outDir" : " out" ,
66 "lib" : [
7- " ES2020 "
7+ " ES2022 "
88 ],
99 "sourceMap" : true ,
1010 "rootDir" : " src" ,
You can’t perform that action at this time.
0 commit comments