This repository was archived by the owner on Aug 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Clear Dependabot high alerts (ansi-regex, y18n) #7
Open
thomasrockhu-codecov
wants to merge
5
commits into
master
Choose a base branch
from
th/cve-ansi-regex-y18n
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
f910305
Override ansi-regex and y18n to clear Dependabot highs.
thomasrockhu-codecov eaef87f
ci: add minimal workflow so CodeQL actions scan succeeds.
thomasrockhu-codecov c17dd2f
ci: add CodeQL config for actions language scan
thomasrockhu-codecov aec296e
ci: retire broken CircleCI Xcode 11.4 job
thomasrockhu-codecov 2a2275e
Potential fix for pull request finding 'CodeQL / Workflow does not co…
thomasrockhu-codecov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,84 +1,17 @@ | ||
| version: 2 | ||
| version: 2.1 | ||
|
|
||
| # Legacy macOS/Xcode 11.4 + iPhone 8 destination is no longer runnable on | ||
| # CircleCI's fleet. Coverage conversion is covered by .github/workflows/ci.yml. | ||
| jobs: | ||
| build-and-test: | ||
| macos: | ||
| xcode: "11.4.0" | ||
| working_directory: /Users/distiller/project | ||
| environment: | ||
| # FL_OUTPUT_DIR: output | ||
| # FASTLANE_LANE: test | ||
| shell: /bin/bash --login -o pipefail | ||
| noop: | ||
| docker: | ||
| - image: cimg/base:stable | ||
| steps: | ||
| - checkout | ||
| - run: | ||
| name: Build | ||
| command: xcodebuild -scheme xcode-poc -sdk iphonesimulator -derivedDataPath Build/ -destination name="iPhone 8" -enableCodeCoverage YES clean test | ||
| - run: | ||
| name: Convert coverage report | ||
| command: | | ||
| XCRESULT=`find ./Build/Logs/Test -name "*.xcresult"` | ||
| echo Converting $XCRESULT to Codecov .json format | ||
| ./bin/generate-codecov-json-macos --archive-path $XCRESULT --prefix /Users/distiller/project/ | ||
| cat coverage-report-* | ||
| - run: | ||
| name: Upload coverage to Codecov | ||
| command: | | ||
| COVERAGE_REPORT=`find ./ -name "coverage-report-*.json"` | ||
| echo Uploading coverage report: $COVERAGE_REPORT | ||
| bash <(curl -s https://codecov.io/bash) -f $COVERAGE_REPORT | ||
| - store_artifacts: | ||
| path: output | ||
| - store_test_results: | ||
| path: output/scan | ||
|
|
||
| # adhoc: | ||
| # macos: | ||
| # xcode: "10.2.0" | ||
| # working_directory: /Users/distiller/project | ||
| # environment: | ||
| # FL_OUTPUT_DIR: output | ||
| # FASTLANE_LANE: adhoc | ||
| # shell: /bin/bash --login -o pipefail | ||
| # steps: | ||
| # - checkout | ||
| # - run: bundle install | ||
| # - run: | ||
| # name: Fastlane | ||
| # command: bundle exec fastlane $FASTLANE_LANE | ||
| # - store_artifacts: | ||
| # path: output/Game.ipa | ||
|
|
||
| # beta: | ||
| # macos: | ||
| # xcode: "10.2.0" | ||
| # working_directory: /Users/distiller/project | ||
| # environment: | ||
| # FL_OUTPUT_DIR: output | ||
| # FASTLANE_LANE: beta | ||
| # shell: /bin/bash --login -o pipefail | ||
| # steps: | ||
| # - checkout | ||
| # - run: bundle install | ||
| # - run: | ||
| # name: Fastlane | ||
| # command: bundle exec fastlane $FASTLANE_LANE | ||
| # - store_artifacts: | ||
| # path: output/Game.ipa | ||
| name: Skip legacy Xcode job | ||
| command: echo "CircleCI macOS Xcode 11.4 job retired; see GitHub Actions CI" | ||
|
|
||
| workflows: | ||
| version: 2 | ||
| build-test-adhoc: | ||
| jobs: | ||
| - build-and-test | ||
| # - adhoc: | ||
| # filters: | ||
| # branches: | ||
| # only: development | ||
| # requires: | ||
| # - build-and-test | ||
| #- beta: | ||
| #filters: | ||
| #branches: | ||
| #only: master | ||
| #requires: | ||
| #- build-and-test | ||
| - noop |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| name: "CodeQL config" | ||
| paths-ignore: | ||
| - node_modules |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [master, main] | ||
| pull_request: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
| - run: npm ci | ||
| - run: node generate-codecov-json.js --help | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.