-
-
Notifications
You must be signed in to change notification settings - Fork 137
53 lines (44 loc) · 1.1 KB
/
test.yml
File metadata and controls
53 lines (44 loc) · 1.1 KB
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
51
52
53
name: ' 🧪 Build and Test'
on:
pull_request:
paths-ignore:
- 'website/**'
push:
branches:
- main
paths-ignore:
- 'website/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-test:
strategy:
matrix:
os:
# - macos-latest # Disabled because github actions randomly fails on macos
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Node.js
uses: ./.github/actions/setup-node
- run: npm ci
- run: npm run build
- run: npm run test
# Ensure the repository is clean after build & test
# - run: git --no-pager diff --compact-summary --exit-code
test-vsce-build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Node.js
uses: ./.github/actions/setup-node
- run: npm ci
- run: npm run test-vsce-build