Merge pull request #14 from harrisondowns/install #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | |