We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d21d5c commit e64cf83Copy full SHA for e64cf83
.github/workflows/build.yml
@@ -4,9 +4,6 @@ on:
4
push:
5
branches:
6
- 'master'
7
- pull_request:
8
- branches:
9
- - '**'
10
11
jobs:
12
build:
.github/workflows/pull_request.yml
@@ -0,0 +1,39 @@
1
+name: Pull Request
2
+
3
+on:
+ pull_request:
+ branches:
+ - '**'
+jobs:
+ build:
+ strategy:
+ matrix:
+ 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