Skip to content

Commit

Permalink
Update to Node 16 and vscode/test-electron 2.3.8 (#306)
Browse files Browse the repository at this point in the history
* increase versions

* remove cluster-settings

* enable test step again
  • Loading branch information
christianbraeunlich authored Jul 9, 2024
1 parent 93d98e1 commit 8d00f3a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16
- run: yarn install
# - run: yarn test
- run: yarn test
- run: npm install -g vsce
- run: vsce package
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -478,13 +478,13 @@
"@types/vscode": "^1.28.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
"@vscode/test-electron": "^2.3.8"
}
}
1 change: 0 additions & 1 deletion src/DynamicsNAV.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Settings } from './Settings';
import * as crsOutput from './CRSOutput';
import { exec, spawn } from 'child_process';
import * as vscode from 'vscode';
import { settings } from 'cluster';
import { AppInsights, EventName } from './ApplicationInsights';

const open = require('open');
Expand Down
1 change: 0 additions & 1 deletion src/test/suite/NAVObject.FilePattern.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { WorkspaceFiles } from '../../WorkspaceFiles'
import * as myExtension from '../../extension';
import * as NAVTestObjectLibrary from './NAVTestObjectLibrary'
import { Settings } from '../../Settings';
import { settings } from 'cluster';
import { StringFunctions } from '../../StringFunctions'

suite("NAVObject FilePattern Tests", () => {
Expand Down
1 change: 0 additions & 1 deletion src/test/suite/NAVObject.PrefexAndSuffix.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { WorkspaceFiles } from '../../WorkspaceFiles'
import * as myExtension from '../../extension';
import * as NAVTestObjectLibrary from './NAVTestObjectLibrary'
import { Settings } from '../../Settings';
import { settings } from 'cluster';
import { FileDecoration } from 'vscode';

suite("NAVObject ObjectNamePrefix Tests", () => {
Expand Down
1 change: 0 additions & 1 deletion src/test/suite/WorkspaceFiles.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Settings } from '../../Settings';
import { NAVObject } from '../../NAVObject'
import { WorkspaceFiles } from '../../WorkspaceFiles';
import * as NAVTestObjectLibrary from './NAVTestObjectLibrary'
import { settings } from 'cluster';

suite("WorkspaceFiles Tests", () => {
test("getDestinationFolder - test", () => {
Expand Down

0 comments on commit 8d00f3a

Please sign in to comment.