-
-
Notifications
You must be signed in to change notification settings - Fork 0
v20.3.0 - NPM OIDC #16
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
14 commits
Select commit
Hold shift + click to select a range
c752b23
Quick prettier update
CodyTolene 8d9453b
Quick version update
CodyTolene 3c6d99f
Running `ng update @angular/cli`
CodyTolene dadd94b
Running `ng update @angular/core`
CodyTolene 5fc5c97
Quick peer dep updates
CodyTolene af8aa41
Running `ng update @angular/material`
CodyTolene 2b57e4d
Running `ng update angular-eslint`
CodyTolene 9050842
Fix up all vulns
CodyTolene 1b0bb9f
README updates
CodyTolene eb9c39b
Update workflows
CodyTolene 5f5f0fb
Cleanup
CodyTolene 6e7a6ad
Package scripts updates
CodyTolene 977ed64
package.json updates
CodyTolene fc3f33e
Update package-lock
CodyTolene 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,32 +1,4 @@ | ||
| # Displaying a sponsor button in your repository | ||
| # https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository | ||
|
|
||
| # LFX Mentorship (formerly CommunityBridge) | ||
| # https://lfx.linuxfoundation.org/tools/mentorship | ||
| community_bridge: | ||
| # GitHub Sponsors | ||
| # https://github.com/sponsors | ||
| github: [ProAngular, CodyTolene] | ||
| # IssueHunt | ||
| # https://issuehunt.io/ | ||
| issuehunt: | ||
| # Ko-fi | ||
| # https://ko-fi.com/ | ||
| ko_fi: | ||
| # Liberapay | ||
| # https://en.liberapay.com/ | ||
| liberapay: | ||
| # Open Collective | ||
| # https://opencollective.com/ | ||
| open_collective: | ||
| # Otechie | ||
| # https://otechie.com/ | ||
| otechie: | ||
| # Patreon | ||
| # https://www.patreon.com/ | ||
| patreon: | ||
| # Tidelift | ||
| # https://tidelift.com/ | ||
| tidelift: | ||
| # Custom URL | ||
| github: [CodyTolene, ProAngular] | ||
| buy_me_a_coffee: CodyTolene | ||
| patreon: CodyTolene | ||
| custom: ['https://www.paypal.me/CodyTolene'] |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 +1,24 @@ | ||
| # Github Package Deployment | ||
| # https://docs.github.com/en/packages | ||
| # https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | ||
|
|
||
| name: Verify and Deploy to GitHub Packages | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| tags: | ||
| - 'v*' | ||
|
|
||
| jobs: | ||
| deploy_gpr_package: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/setup-node@v3 | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20.x' | ||
| registry-url: 'https://npm.pkg.github.com' | ||
| - run: npm ci | ||
| - run: npm run build:package | ||
| - run: npm run npm-build-package | ||
| - run: cd dist/npm && npm publish --access=public | ||
| env: | ||
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,22 +1,25 @@ | ||
| # npmjs Package Deployment | ||
| # https://docs.npmjs.com/about-packages-and-modules | ||
|
|
||
| name: Verify and Deploy to npmjs | ||
|
|
||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| tags: | ||
| - 'v*' | ||
|
|
||
| jobs: | ||
| deploy_npmjs_package: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/setup-node@v3 | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20.x' | ||
| registry-url: 'https://registry.npmjs.org' | ||
| - name: Update npm to latest | ||
| run: npm install -g npm@latest | ||
| - run: npm ci | ||
| - run: npm run build:package | ||
| - run: cd dist/npm && npm publish --access=public | ||
| env: | ||
| NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | ||
| - run: npm run npm-build-package | ||
| - run: cd dist/npm && npm publish | ||
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
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.