-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: James Talton <[email protected]>
- Loading branch information
1 parent
bf3c980
commit 359537f
Showing
7 changed files
with
139 additions
and
104 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,20 @@ | ||
name: AWX Component | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cypress/support/**' | ||
- 'frontend/awx/**' | ||
- 'frontend/common/**' | ||
- 'framework/**' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
awx: | ||
name: AWX | ||
uses: ./.github/workflows/component.yml | ||
with: | ||
directory: frontend/awx |
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,42 @@ | ||
name: Checks | ||
|
||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
checks: | ||
name: Checks | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
script: [tsc,tsc:framework,eslint,prettier] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: PreCache | ||
run: npm version 0.0.0 --no-git-tag-version | ||
|
||
- name: Cache dependencies | ||
id: cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
./node_modules | ||
/home/runner/.cache/Cypress | ||
key: modules-${{ hashFiles('package-lock.json') }} | ||
|
||
- name: Install dependencies | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: npm ci | ||
|
||
- name: Run script ${{ matrix.script }} | ||
run: npm run ${{ matrix.script }} |
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,19 @@ | ||
name: Common Component | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cypress/support/**' | ||
- 'frontend/common/**' | ||
- 'framework/**' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
awx: | ||
name: Common | ||
uses: ./.github/workflows/component.yml | ||
with: | ||
directory: frontend/common |
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,20 @@ | ||
name: EDA Component | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cypress/support/**' | ||
- 'frontend/eda/**' | ||
- 'frontend/common/**' | ||
- 'framework/**' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
awx: | ||
name: EDA | ||
uses: ./.github/workflows/component.yml | ||
with: | ||
directory: frontend/eda |
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,18 @@ | ||
name: Framework Component | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cypress/support/**' | ||
- 'framework/**' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
awx: | ||
name: Framework | ||
uses: ./.github/workflows/component.yml | ||
with: | ||
directory: frontend/framework |
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,20 @@ | ||
name: HUB Component | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cypress/support/**' | ||
- 'frontend/hub/**' | ||
- 'frontend/common/**' | ||
- 'framework/**' | ||
|
||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
awx: | ||
name: HUB | ||
uses: ./.github/workflows/component.yml | ||
with: | ||
directory: frontend/hub |
This file was deleted.
Oops, something went wrong.