-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (51 loc) · 1.38 KB
/
deno-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Deno Test
on:
push:
branches:
- main
paths:
- '**.ts'
- '.github/workflows/deno-test.yml'
- 'deno.jsonc'
pull_request:
branches:
- main
paths:
- '**.ts'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Verify formatting
run: deno fmt --check
- name: Check
run: deno task check
- name: Run linter
run: deno task lint
- name: Get Denops
run: |
git clone https://github.com/vim-denops/denops.vim /tmp/denops.vim
echo "DENOPS_TEST_DENOPS_PATH=/tmp/denops.vim" >> "$GITHUB_ENV"
- uses: rhysd/action-setup-vim@v1
id: vim
- name: Export Vim Executable
run: |
echo "DENOPS_TEST_VIM_EXECUTABLE=${{ steps.vim.outputs.executable }}" >> "$GITHUB_ENV"
- uses: rhysd/action-setup-vim@v1
id: nvim
with:
neovim: true
- name: Export Neovim Executable
run: |
echo "DENOPS_TEST_NVIM_EXECUTABLE=${{ steps.nvim.outputs.executable }}" >> "$GITHUB_ENV"
- name: Run tests
run: deno task test