Skip to content

Commit e64cf83

Browse files
committed
Drop Windows from PR workflow
1 parent 9d21d5c commit e64cf83

File tree

2 files changed

+39
-3
lines changed

2 files changed

+39
-3
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
branches:
66
- 'master'
7-
pull_request:
8-
branches:
9-
- '**'
107

118
jobs:
129
build:

.github/workflows/pull_request.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
build:
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest]
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- name: Checkout VSCodeVim
16+
uses: actions/checkout@v3
17+
18+
- name: Set up Node.js
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 20
22+
cache: yarn
23+
24+
- name: Install dependencies
25+
run: yarn install --frozen-lockfile
26+
27+
- name: Prettier
28+
run: yarn prettier:check
29+
30+
- name: Lint
31+
run: yarn lint
32+
33+
- name: Build
34+
run: gulp webpack
35+
36+
- name: Test
37+
run: |
38+
gulp prepare-test
39+
xvfb-run -a yarn test

0 commit comments

Comments
 (0)