Skip to content

Commit 1ff89d7

Browse files
Merge pull request #343 from EduardKrieger/bugfix/fix_error_with_npm_install
updated npm package version and workflows
2 parents d900bf0 + 1151989 commit 1ff89d7

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/linuxMain.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: sudo apt install asciidoctor
2828

2929
- name: install TS
30-
run: npm install typescript
30+
run: npm install -g typescript
3131

3232
- name: npm install
3333
run: npm install

.github/workflows/linuxPullRequest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: sudo apt install asciidoctor
2121

2222
- name: install TS
23-
run: npm install typescript
23+
run: npm install -g typescript
2424

2525
- name: npm install
2626
run: npm install

.github/workflows/windowsMain.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v2-beta
2020
with:
21-
node-version: '14'
21+
node-version: '16'
2222

2323
- name: install Pandoc
2424
uses: crazy-max/ghaction-chocolatey@v1
@@ -34,7 +34,7 @@ jobs:
3434
run: gem install asciidoctor
3535

3636
- name: install TS
37-
run: npm install typescript
37+
run: npm install -g typescript
3838

3939
- name: npm install
4040
run: npm install

.github/workflows/windowsPullRequest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
- uses: actions/setup-node@v2-beta
1313
with:
14-
node-version: '14'
14+
node-version: '16'
1515

1616
- name: install Pandoc
1717
uses: crazy-max/ghaction-chocolatey@v1
@@ -27,7 +27,7 @@ jobs:
2727
run: gem install asciidoctor
2828

2929
- name: install TS
30-
run: npm install typescript
30+
run: npm install -g typescript
3131

3232
- name: npm install
3333
run: npm install

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@
44
"description": "",
55
"main": "index.js",
66
"dependencies": {
7-
"@types/chai": "^4.2.14",
8-
"@types/mocha": "^8.2.0",
9-
"@types/node": "^14.14.2",
10-
"chai": "^4.2.0",
11-
"ejs": "^3.1.5",
12-
"find-process": "^1.4.4",
7+
"@types/chai": "^4.3.0",
8+
"@types/mocha": "^8.2.3",
9+
"@types/node": "^16.11.7",
10+
"chai": "^4.3.6",
11+
"ejs": "^3.1.6",
12+
"find-process": "^1.4.7",
1313
"fs-extra": "^9.1.0",
14-
"is-reachable": "^5.0.0",
15-
"mocha": "^8.2.1",
14+
"is-reachable": "^5.1.1",
15+
"mocha": "^8.4.0",
1616
"pegjs": "^0.10.0",
1717
"process-list": "^2.0.0",
1818
"rimraf": "^3.0.2",
1919
"ts-pegjs": "^0.2.7",
2020
"vscode-extension-tester": "^3.2.5",
21-
"yargs": "^16.1.0"
21+
"yargs": "^16.2.0"
2222
},
2323
"devDependencies": {
24-
"@types/jasmine": "^3.6.2",
25-
"jasmine": "^3.6.2"
24+
"@types/jasmine": "^3.10.3",
25+
"jasmine": "^3.99.0"
2626
},
2727
"scripts": {
2828
"test": "npx jasmine"
2929
},
3030
"author": "",
3131
"license": "ISC"
32-
}
32+
}

0 commit comments

Comments
 (0)