Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit a90d5c5

Browse files
authored
Merge pull request #145 from Lightning-Flow-Scanner/revert-back-to-last-working-tag
Revert back to last working tag
2 parents 1bf07ca + 4da568b commit a90d5c5

31 files changed

+7639
-10321
lines changed

.eslintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 6,
6+
"sourceType": "module"
7+
},
8+
"plugins": [
9+
"@typescript-eslint"
10+
],
11+
"rules": {
12+
"@typescript-eslint/naming-convention": "warn",
13+
"@typescript-eslint/semi": "warn",
14+
"curly": "warn",
15+
"eqeqeq": "warn",
16+
"no-throw-literal": "warn",
17+
"semi": "off"
18+
},
19+
"ignorePatterns": [
20+
"out",
21+
"dist",
22+
"**/*.d.ts"
23+
]
24+
}

.github/workflows/test.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,26 @@ concurrency:
1111
jobs:
1212
test:
1313
name: Test
14-
runs-on: macos-latest
14+
15+
runs-on: ${{ matrix.os }}
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
os: [macos-latest, windows-latest]
21+
node-version: [22.x]
22+
1523
timeout-minutes: 15
1624
steps:
1725
- name: Checkout Code
1826
uses: actions/checkout@v4
1927
- name: Install node
2028
uses: actions/[email protected]
2129
with:
22-
node-version: 22.x
30+
node-version: 20.x
2331
- name: Install dependencies and link
2432
run: npm ci
2533
- name: Package
2634
run: npm run build
27-
- name: Run tests
28-
run: npm run test:cov
35+
# - name: Run tests
36+
# run: npm run wdio-test

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,4 @@ node_modules
55
*.vsix
66
.DS_Store
77
yarn-error.logs
8-
.wdio-vscode-service
9-
10-
coverage
11-
*.log
8+
.wdio-vscode-service

.vscode/settings.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,5 @@
1010
},
1111
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1212
"typescript.tsc.autoDetect": "off",
13-
"typescript.tsdk": "node_modules/typescript/lib",
14-
"jest.jestCommandLine" : "npm run jest --",
15-
"jest.runMode": "on-demand"
13+
"typescript.tsdk": "node_modules/typescript/lib"
1614
}

.vscodeignore

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,4 @@ vsc-extension-quickstart.md
1010
**/*.ts
1111
node_modules
1212
.wdio-vscode-service
13-
**.vsix
14-
15-
__mocks__
16-
test
17-
coverage
18-
*.log
19-
*.config.mjs
20-
*.config.js
21-
*.conf.ts
22-
.github
13+
**.vsix

__mocks__/vscode.js

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

eslint.config.mjs

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

jest.config.js

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

0 commit comments

Comments
 (0)