-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
50 lines (41 loc) · 990 Bytes
/
build.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
name: build
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout VSCodeVim
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Prettier
if: matrix.os != 'windows-latest'
run: yarn prettier:check
- name: Lint
run: yarn lint
- name: Build
run: gulp webpack
- name: Test on ubuntu-latest
if: matrix.os != 'windows-latest'
run: |
gulp prepare-test
xvfb-run -a yarn test
- name: Test on windows-latest
if: matrix.os == 'windows-latest'
run: |
gulp prepare-test
yarn test