-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps-dev): bump @ts-dev-tools/react
Bumps the dev-dependencies group with 1 update in the / directory: [@ts-dev-tools/react](https://github.com/escemi-tech/ts-dev-tools). Updates `@ts-dev-tools/react` from 1.6.2 to 1.8.4 - [Release notes](https://github.com/escemi-tech/ts-dev-tools/releases) - [Commits](https://github.com/escemi-tech/ts-dev-tools/compare/@ts-dev-tools/[email protected]...@ts-dev-tools/[email protected]) --- updated-dependencies: - dependency-name: "@ts-dev-tools/react" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Emilien Escalle <[email protected]>
- Loading branch information
1 parent
168aafa
commit d9036eb
Showing
11 changed files
with
998 additions
and
1,128 deletions.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Common Continuous Integration tasks | ||
|
||
on: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
security-events: write | ||
id-token: write | ||
|
||
jobs: | ||
continuous-integration: | ||
uses: hoverkraft-tech/ci-github-nodejs/.github/workflows/[email protected] | ||
permissions: | ||
id-token: write | ||
security-events: write | ||
contents: read | ||
with: | ||
build: | | ||
{ | ||
"commands": ["build:ci"], | ||
"artifact": ["public"] | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Greetings | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
pull_request_target: | ||
branches: [main] | ||
|
||
permissions: | ||
contents: read | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
greetings: | ||
uses: hoverkraft-tech/ci-github-common/.github/workflows/[email protected] |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Internal - Main - Continuous Integration | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
tags: ["*"] | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
security-events: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ci: | ||
uses: ./.github/workflows/__shared-ci.yml | ||
secrets: inherit | ||
|
||
deploy: | ||
name: Deploy website | ||
needs: ci | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: documentation | ||
|
||
- name: ⚙️ Setup Pages | ||
if: github.ref == 'refs/heads/main' | ||
uses: actions/configure-pages@v5 | ||
|
||
- name: 🚀 Deploy to GitHub Pages | ||
id: deployment | ||
if: github.ref == 'refs/heads/main' | ||
uses: actions/deploy-pages@v4 | ||
|
||
- name: 🔭 Check the site is up | ||
uses: srt32/[email protected] | ||
with: | ||
url-to-hit: ${{ steps.deployment.outputs.page_url }} | ||
expected-statuses: "200" |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Need fix to Issue | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
inputs: | ||
#checkov:skip=CKV_GHA_7: required | ||
manual-commit-ref: | ||
description: "The SHA of the commit to get the diff for" | ||
required: true | ||
manual-base-ref: | ||
description: "By default, the commit entered above is compared to the one directly | ||
before it; to go back further, enter an earlier SHA here" | ||
required: false | ||
|
||
permissions: | ||
contents: read | ||
issues: write | ||
|
||
jobs: | ||
main: | ||
uses: hoverkraft-tech/ci-github-common/.github/workflows/[email protected] | ||
with: | ||
manual-commit-ref: ${{ inputs.manual-commit-ref }} | ||
manual-base-ref: ${{ inputs.manual-base-ref }} |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Pull request - Continuous Integration | ||
|
||
on: | ||
merge_group: | ||
pull_request: | ||
branches: [main] | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
security-events: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ci: | ||
uses: ./.github/workflows/__shared-ci.yml | ||
secrets: inherit |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: "Pull Request - Semantic Lint" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
main: | ||
uses: hoverkraft-tech/ci-github-common/.github/workflows/[email protected] |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
main: | ||
uses: hoverkraft-tech/ci-github-common/.github/workflows/[email protected] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { default as tsDevToolsCore } from "@ts-dev-tools/core/dist/eslint-plugin-ts-dev-tools/index.js"; | ||
|
||
export default tsDevToolsCore.default; |
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
Oops, something went wrong.