Skip to content

Commit

Permalink
feat(ci): run the expensive dev server test for mac only on main (#1203)
Browse files Browse the repository at this point in the history
* Run dev server test only on mac only on main

* Run also when this workflow file changes

* Update .github/workflows/node_dev.yml
  • Loading branch information
corneliusroemer committed Feb 29, 2024
1 parent b64039a commit 0c87a48
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/node_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
paths:
- "website/**"
- "deploy.py"
- generate_local_test_config.sh
- .github/workflows/node_dev.yml
workflow_dispatch:

Expand All @@ -17,7 +18,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os:
- ubuntu-latest
- windows-latest
- macos-latest
exclude:
- os: ${{ github.ref != 'refs/heads/main' && 'macos-latest' }}

steps:
- uses: azure/setup-helm@v4
- name: Checkout repository
Expand Down

0 comments on commit 0c87a48

Please sign in to comment.