-
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.
Merge pull request #686 from ashley-evans/move-oidc-provider-configur…
…ation ci: replace oidc provider creation with parameter
- Loading branch information
Showing
12 changed files
with
38 additions
and
43 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 |
---|---|---|
|
@@ -55,7 +55,7 @@ jobs: | |
- uses: scottbrenner/[email protected] | ||
- name: Validate Templates | ||
run: | | ||
xargs -n1 -r0a <(find ./templates/ -name *-template.yml -print0) cfn-lint | ||
xargs -r0a <(find ./templates/ -name *-template.yml -print0) -I {} sh -c 'cfn-lint {} -i W3002 -i W3045' | ||
format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -65,7 +65,7 @@ jobs: | |
node-version: "18" | ||
- name: Run formatters | ||
run: | | ||
npx prettier --check . '!services/**' '!packages/**' '!ui/**' | ||
npx prettier@^2.5.1 --check . '!services/**' '!packages/**' '!ui/**' | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -88,7 +88,7 @@ jobs: | |
${{ runner.os }}-node-v1-${{ env.cache-name }}- | ||
- name: Install Dependencies | ||
run: | | ||
npx lerna bootstrap --scope "{how-many-buzzwords,how-many-buzzwords-ui}" | ||
npx lerna@^5.5.2 bootstrap --scope "{how-many-buzzwords,how-many-buzzwords-ui}" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run linters | ||
|
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
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 |
---|---|---|
|
@@ -60,7 +60,7 @@ jobs: | |
registry-url: "https://npm.pkg.github.com" | ||
- name: Run formatters | ||
run: | | ||
npx prettier --check ${{ inputs.path }} | ||
npx prettier@^2.5.1 --check ${{ inputs.path }} | ||
lint: | ||
runs-on: ubuntu-latest | ||
needs: changed | ||
|
@@ -84,7 +84,7 @@ jobs: | |
- name: Install Dependencies | ||
run: | | ||
package_name=$(jq -r ".name" ${{ inputs.path }}/package.json) | ||
npx lerna bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
npx lerna@^5.5.2 bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run linters | ||
|
@@ -100,7 +100,7 @@ jobs: | |
- uses: scottbrenner/[email protected] | ||
- name: Validate Templates | ||
run: | | ||
xargs -r0a <(find ${{ inputs.path }} -name *-template.yml -print0) -I {} sh -c 'cfn-lint {} -i W3002' | ||
xargs -r0a <(find ${{ inputs.path }} -name *-template.yml -print0) -I {} sh -c 'cfn-lint {} -i W3002 -i W3045' | ||
unit-test: | ||
runs-on: ubuntu-latest | ||
needs: changed | ||
|
@@ -126,7 +126,7 @@ jobs: | |
- name: Install Dependencies | ||
run: | | ||
package_name=$(jq -r ".name" ${{ inputs.path }}/package.json) | ||
npx lerna bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
npx lerna@^5.5.2 bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run Unit Tests | ||
|
@@ -157,7 +157,7 @@ jobs: | |
- name: Install Dependencies | ||
run: | | ||
package_name=$(jq -r ".name" ${{ inputs.path }}/package.json) | ||
npx lerna bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
npx lerna@^5.5.2 bootstrap --scope "{how-many-buzzwords,${package_name}*}" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Setup DynamoDB local | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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