Skip to content

Commit

Permalink
Trying to update node
Browse files Browse the repository at this point in the history
  • Loading branch information
ProfMoo committed Dec 4, 2024
1 parent c8b4fc2 commit c7f698e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "23.x"
registry-url: "https://registry.npmjs.org"
- name: Run npm ci
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "23.x"
registry-url: "https://registry.npmjs.org"

- name: Publish to NPM
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "23.x"
registry-url: "https://registry.npmjs.org"
- name: Run npm ci
run: npm ci
Expand Down
5 changes: 1 addition & 4 deletions .mocharc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"require": [
"ts-node/register"
],
"loader": "ts-node/esm",
"spec": "src/**/*.test.ts",
"watch-extensions": "ts",
"recursive": true
"spec": "src/**/*.test.ts"
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"compilerOptions": {
"target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"module": "CommonJS", /* Specify what module code is generated. */
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true,
"declaration": true,
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
"strict": true, /* Enable all strict type-checking options. */
"moduleResolution": "node",
"noImplicitAny": true,
"strictNullChecks": true,
"alwaysStrict": true,
Expand Down

0 comments on commit c7f698e

Please sign in to comment.