-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent xlarge from running on forks (#1432)
* fix: prevent xlarge from running on forks * fix: dont run on main CI * fix: single quotes * fix: get context * fix: a thing * fix: update head repo full name
- Loading branch information
1 parent
fd624e5
commit d42a336
Showing
1 changed file
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest, macos-latest-xlarge] | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
@@ -46,6 +46,49 @@ jobs: | |
verbose: true | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
run-macos-latest-xlarge: | ||
if: github.head.repo.full_name == 'codecov/codecov-action' | ||
runs-on: macos-latest-xlarge | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Lint | ||
run: npm run lint | ||
- name: Run tests and collect coverage | ||
run: npm run test | ||
- name: Upload coverage to Codecov (script) | ||
uses: ./ | ||
with: | ||
fail_ci_if_error: true | ||
files: ./coverage/script/coverage-final.json | ||
flags: script,macos-latest-xlarge | ||
name: codecov-script | ||
verbose: true | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Upload coverage to Codecov (demo) | ||
uses: ./ | ||
with: | ||
fail_ci_if_error: true | ||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json | ||
file: ./coverage/coverage-final.json | ||
flags: demo,macos-latest-xlarge | ||
name: codecov-demo | ||
verbose: true | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Upload coverage to Codecov (version) | ||
uses: ./ | ||
with: | ||
fail_ci_if_error: true | ||
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json | ||
file: ./coverage/coverage-final.json | ||
flags: version,maxos-latest-xlarge | ||
name: codecov-version | ||
version: v0.2.0 | ||
verbose: true | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
run-container: | ||
runs-on: ubuntu-latest | ||
container: node:18 | ||
|