-
Notifications
You must be signed in to change notification settings - Fork 22
fix(cd): resolving errors in cd matrix runs #3868
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
375387b
chore(cd): testing the .npmrc file
ChronosSF 1b662c2
fix(cd): make sure the .npmrc is clean before adding config
ChronosSF 1680eb9
fix(cd): switching to _auth because of wrong token type
ChronosSF 63c4475
fix(cd): claude fix for sed error
ChronosSF 1fd1f52
fix(*): attempting a fix for ng v7
ChronosSF 5def8ec
Merge remote-tracking branch 'origin/master' into sstoychev/fixing-ma…
ChronosSF 1a34b23
refactor(ci): moving cd logic to private pipe
ChronosSF 0abbc08
fix(ci): limiting payload to 10 props
ChronosSF 0aaafb1
refactor(cd): reimplementing build process in this pipe
ChronosSF c1b4d0f
Merge branch 'sstoychev/fixing-matrix-strategy' of https://github.com…
ChronosSF b2c7294
fix(cd): applying fixes for wrong conditions
ChronosSF 1d644ba
chore(ci): adding some debug info
ChronosSF d79073e
fix(cd): fix for commit stage
ChronosSF ac19ae7
fix(cd): attempt to authenticate the push
ChronosSF cb8620f
fix(cd): properly detecting codesandbox changes per dir
ChronosSF 71f8dc4
fix(cd): resolving issue with file path
ChronosSF bf2f3b1
fix(cd): changing the zip command
ChronosSF aa8b3c8
fix(cd): trying yet another zip option
ChronosSF 82225c9
fix(cd): trying like this
ChronosSF a380b9a
fix(cd): modifying artifact name
ChronosSF db54b4f
fix(ci): disabling azure, adding gh workflow instead
ChronosSF 6586eb9
refactor(cd): disabling all azure pipelines
ChronosSF e358e6e
Merge branch 'master' into sstoychev/fixing-matrix-strategy
ChronosSF f287aa0
Potential fix for code scanning alert no. 12: Workflow does not conta…
ChronosSF a3a89ad
chore(*): lets bring the name to standards
ChronosSF 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 |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| # This is a basic workflow to help you get started with Actions | ||
|
|
||
| name: App Main CI | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| # Controls when the action will run. Triggers the workflow on push or pull request | ||
| # events but only for the master branch | ||
| on: | ||
| push: | ||
| branches: [ master, vnext ] | ||
| paths: | ||
| - '**' | ||
| - '!projects/**' | ||
| pull_request: | ||
| branches: [ master, vnext ] | ||
| paths: | ||
| - '**' | ||
| - '!projects/**' | ||
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
| jobs: | ||
| # This workflow contains a single job called "build" | ||
| build: | ||
| # The type of runner that the job will run on | ||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [20.x, 22.x] | ||
|
|
||
| # Steps represent a sequence of tasks that will be executed as part of the job | ||
| steps: | ||
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
| - uses: actions/checkout@v3 | ||
|
|
||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v3 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| cache: 'npm' | ||
|
|
||
| - name: Npm add registry | ||
| run: npm config set @infragistics:registry https://${{secrets.IG_SCOPE}} | ||
|
|
||
| - name: Npm config auth | ||
| run: npm config set ${{secrets.IG_SCOPE}}:_auth=${{secrets.IG_TOKEN}} | ||
|
|
||
| - name: Install dependencies | ||
| run: npm install | ||
|
|
||
| - name: Run lint | ||
| run: npm run lint | ||
|
|
||
| - name: 'Generate live editing and build samples' | ||
| run: npm run build | ||
| env: | ||
| NODE_OPTIONS: "--max_old_space_size=4096" | ||
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
This file was deleted.
Oops, something went wrong.
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
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
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
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,3 +1,5 @@ | ||
| trigger: none | ||
|
|
||
| pool: | ||
| vmImage: 'ubuntu-latest' | ||
|
|
||
|
|
||
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.