-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (61 loc) · 2.04 KB
/
ci.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# https://help.github.com/en/actions
# https://github.com/actions
# https://github.com/actions/checkout
# https://github.com/actions/setup-node
# TODO: add windows-latest after fixing CMake.
# https://github.com/micro-os-plus/build-helper-xpack/actions/workflows/ci.yml
name: CI on Push
on:
push:
paths-ignore:
- '.vscode/**'
- 'LICENSE'
- '**.md'
- '.clang-format'
- '.gitignore'
- '.npmignore'
# This should disable running the workflow on tags, according to the
# on.<push|pull_request>.<branches|tags> GitHub Actions docs.
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore
branches:
- '*'
pull_request:
jobs:
ci-test:
name: 'CI build-helper tests'
runs-on: ${{ matrix.os }}
strategy:
matrix:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
os: [ubuntu-22.04, macos-12]
# https://nodejs.org/en - use LTS
node-version: [18]
# https://www.npmjs.com/package/xpm
xpm-version: ['0.16.2']
steps:
- name: Checkout
# https://github.com/actions/checkout
uses: actions/checkout@v3
with:
fetch-depth: 3
- name: Setup Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
# https://github.com/actions/setup-node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install xpm@${{ matrix.xpm-version }} on Unix
if: runner.os != 'Windows'
run: sudo npm install -g xpm@${{ matrix.xpm-version }}
- name: Install xpm@${{ matrix.xpm-version }} on Windows
if: runner.os == 'Windows'
run: npm install -g xpm@${{ matrix.xpm-version }}
- name: Show node & npm versions, environment
run: |
node --version
npm --version
xpm --version
env | sort
- name: Run test
run: |
xpm install
xpm run test