-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (39 loc) · 972 Bytes
/
on.push.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
---
name: "CI"
"on":
## Run on push
push:
paths:
- apps/**/*.*
- packages/**/*.*
- pnpm-lock.yaml
- package.json
- .github/workflows/*.yml
concurrency:
# Cancel previous actions from the same PR: https://stackoverflow.com/a/72408109
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: "Build: ${{ matrix.label }}"
uses: ./.github/workflows/module.build.yml
strategy:
fail-fast: false
matrix:
runner: [ubuntu-latest]
label: ["Ubuntu"]
include:
- runner: ubuntu-latest
label: Ubuntu
- runner: macos-latest
label: macOS
- runner: windows-2022
label: Windows
secrets: inherit
with:
runner: ${{ matrix.runner }}
label: ${{ matrix.label }}
native: false
ios: false