-
Notifications
You must be signed in to change notification settings - Fork 0
Develop #12
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
Develop #12
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
1cce5b0
initiated dev environment
Zaiidmo f850005
ops: updated SOnar name
Zaiidmo 852ae0c
ops (ci): standardize publish validation and dependabot across all pa…
Zaiidmo ada7279
chore(COMPT-138): apply repository-wide prettier baseline (#4)
a-elkhiraooui-ciscode 8cde8b0
Feat/compt 30 state storage hooks (#6)
a-elkhiraooui-ciscode 788fe7e
Feat/compt 31 dom event hooks (#8)
a-elkhiraooui-ciscode 0117305
Feat/compt 32 async lifecycle hooks (#9)
a-elkhiraooui-ciscode 1eeeaaa
test(COMPT-33): consolidate all hook tests into src/hooks/__tests__/ …
a-elkhiraooui-ciscode 77f86ef
security: added CODEOWNER file for branches security
Zaiidmo 560057a
ops: updated release check workflow
Zaiidmo fa2425c
Pull dev merge
Zaiidmo 90885a4
ops: updated relese check workflow#
Zaiidmo 35a4338
feat(COMPT-34): README, v0.1.0 version bump, publish preparation (#11)
Zaiidmo 56783a9
ci: update release check workflow
Zaiidmo 3dc2eb5
ops: updated release check jobs.
Zaiidmo 81ac0c0
Merge branch 'develop' of github.com:CISCODE-MA/HooksKit into develop
Zaiidmo 546db1a
v0.1.0
Zaiidmo 66a42cf
fix(ci): correct sonar test directory and inclusion patterns
Zaiidmo 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 @@ | ||
| * @CISCODE-MA/devops |
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 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: npm | ||
| directory: '/' | ||
| schedule: | ||
| interval: monthly | ||
| open-pull-requests-limit: 1 | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - '*' | ||
| assignees: | ||
| - CISCODE-MA/cloud-devops | ||
| labels: | ||
| - 'dependencies' | ||
| - 'npm' | ||
| commit-message: | ||
| prefix: 'chore(deps)' | ||
| include: 'scope' | ||
| rebase-strategy: auto |
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 |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| name: CI - PR Validation | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [develop] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| validate: | ||
| name: CI - PR Validation | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
| cache: npm | ||
|
|
||
| - name: Install | ||
| run: npm ci | ||
|
|
||
| - name: Format (check) | ||
| run: npm run format | ||
|
|
||
| - name: Lint | ||
| run: npm run lint | ||
|
|
||
| - name: Typecheck | ||
| run: npm run typecheck | ||
|
|
||
| - name: Test | ||
| run: npm test | ||
|
|
||
| - name: Build | ||
| run: npm run build |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Validate version tag and package.jsononly checks that the tagv${package.json version}exists somewhere in the repo, not that it points to the current commit being published. This can allow publishing from an untagged commit (or the wrong tag). Verify the tag is an exact match forHEAD(e.g.,git describe --exact-match --tags HEAD) and that it equalsv${PKG_VERSION}.