Skip to content

Commit

Permalink
update workflows and lsp deps
Browse files Browse the repository at this point in the history
  • Loading branch information
anweiss committed Mar 23, 2022
1 parent c5a45b8 commit aeb063a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lsp-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '16'

- name: Install dependencies
working-directory: ./cddl-lsp
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '16'

- name: Install wasmpack
run: |
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '16'

- name: Deploy to Marketplace
working-directory: ./cddl-lsp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cddl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '16'

- name: Install wasmpack
run: |
Expand Down
2 changes: 1 addition & 1 deletion cddl-lsp/client/src/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function run(): Promise<void> {
const mocha = new Mocha({
ui: 'tdd',
});
mocha.useColors(true);
mocha.options.color = true;
mocha.timeout(100000);

const testsRoot = __dirname;
Expand Down

0 comments on commit aeb063a

Please sign in to comment.