Skip to content

Commit

Permalink
Merge pull request #226 from vim-denops/fix-ci
Browse files Browse the repository at this point in the history
☕ Fix CI
  • Loading branch information
lambdalisue authored Dec 13, 2022
2 parents 13b6368 + 708fdac commit bb349e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ jobs:
deno-version: "${{ matrix.version }}"
- name: Lint check
run: make lint
if: matrix.version == '1.x'
- name: Format check
run: make fmt-check
if: matrix.version == '1.x'
- name: Type check
run: make type-check

Expand Down
4 changes: 3 additions & 1 deletion denops/@denops/test/tester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import type { Denops, Meta } from "../mod.ts";
import { DenopsImpl } from "../impl.ts";
import { DENOPS_TEST_NVIM, DENOPS_TEST_VIM, run } from "./runner.ts";

const DEFAULT_TIMEOUT = 1000;
const DEFAULT_TIMEOUT = Number(
Deno.env.get("DENOPS_TEST_DEFAULT_TIMEOUT") ?? "30000",
);

const DENOPS_PATH = Deno.env.get("DENOPS_PATH");

Expand Down

0 comments on commit bb349e4

Please sign in to comment.