Skip to content

Commit 96e7a1a

Browse files
authored
Update main.yml
1 parent 32d1e28 commit 96e7a1a

File tree

1 file changed

+0
-62
lines changed

1 file changed

+0
-62
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -28,65 +28,3 @@ jobs:
2828
# Codecov coverage reports
2929
- name: Upload coverage reports to Codecov
3030
uses: codecov/codecov-action@v3
31-
32-
- name: Checkout
33-
uses: actions/checkout@v3
34-
with:
35-
fetch-depth: 2
36-
37-
- name: Setup vim
38-
uses: rhysd/[email protected]
39-
id: vim
40-
with:
41-
version: v9.0.0815
42-
43-
- name: Setup neovim
44-
id: nvim
45-
uses: rhysd/[email protected]
46-
with:
47-
neovim: true
48-
49-
- name: Install Dependencies
50-
run: |
51-
yarn global add bytes
52-
yarn install --frozen-lockfile
53-
sudo apt-get install -y xclip ripgrep exuberant-ctags
54-
xclip -version
55-
rg --version
56-
ctags --version
57-
vim --version
58-
nvim --version
59-
60-
- name: Run jest
61-
env:
62-
VIM_COMMAND: ${{ steps.vim.outputs.executable }}
63-
NVIM_COMMAND: ${{ steps.nvim.outputs.executable }}
64-
run: |
65-
node --max-old-space-size=4096 --expose-gc ./node_modules/.bin/jest --maxWorkers=2 --coverage --forceExit
66-
67-
- name: Codecov
68-
uses: codecov/[email protected]
69-
if: ${{ matrix.ENABLE_CODE_COVERAGE }}
70-
with:
71-
token: ${{ secrets.CODECOV_TOKEN }}
72-
fail_ci_if_error: false
73-
verbose: true
74-
75-
test:
76-
if: github.event.pull_request.draft == false
77-
timeout-minutes: 60
78-
runs-on: ubuntu-latest
79-
80-
strategy:
81-
fail-fast: false
82-
matrix:
83-
node:
84-
- "16"
85-
- "14"
86-
include:
87-
# only enable coverage on the fastest job
88-
- node: "16"
89-
ENABLE_CODE_COVERAGE: true
90-
91-
env:
92-
NODE_ENV: test

0 commit comments

Comments
 (0)