-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
48 lines (39 loc) · 983 Bytes
/
build.yml
File metadata and controls
48 lines (39 loc) · 983 Bytes
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
name: build
on:
push:
branches:
- 'master'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout VSCodeVim
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Prettier
if: matrix.os != 'windows-latest'
run: yarn prettier:check
- name: Lint
if: matrix.os != 'windows-latest'
run: yarn lint
- name: Build
run: yarn build
- name: Test on ubuntu-latest
if: matrix.os != 'windows-latest'
run: |
yarn build-test
xvfb-run -a yarn test
- name: Test on windows-latest
if: matrix.os == 'windows-latest'
run: |
yarn build-test
yarn test