-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (46 loc) · 1.21 KB
/
pull_request_validation.yml
File metadata and controls
53 lines (46 loc) · 1.21 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: Pull Request - Validation
on:
pull_request:
types: [opened, reopened, synchronize]
branches-ignore:
- '**/graphite-base/**'
push:
branches:
- main
jobs:
validate:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Install Dashcam
uses: ./.
with:
version: "1.0.49"
cli-version: "0.8.3"
node-version: "22.19.0"
node-directory: "C:\\nodejs22"
node-prefix: "C:\\nodejs22\\npm-installs"
- name: Start Dashcam
uses: ./start
continue-on-error: true
with:
api-key: "1234567890"
- name: Stop Dashcam
uses: ./stop
continue-on-error: true
with:
project-id: "507f1f77bcf86cd799439011"
validate_macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Install Dashcam - MacOS
uses: ./.
with:
version: "1.0.49"
cli-version: "0.8.3"
node-version: "22.19.0"
node-directory: "${{ runner.temp }}/nodejs22"
node-prefix: "${{ runner.temp }}/nodejs22/npm-installs"