-
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.
- Loading branch information
1 parent
23bd4a6
commit 8f870a7
Showing
3 changed files
with
52 additions
and
14 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 |
---|---|---|
@@ -1,29 +1,24 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
name: Lint | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: 'ubuntu-latest' | ||
|
||
runs-on: ['ubuntu-latest'] | ||
steps: | ||
|
||
- uses: 'actions/checkout@v2' | ||
|
||
- uses: 'actions/setup-python@v2' | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: yamlllint | ||
run: | | ||
pip install yamllint==1.24.2 | ||
pip install yamllint==1.35.1 | ||
yamllint module.yml && yamllint test/*.yml | ||
- name: cfn-lint | ||
run: | | ||
pip install cfn-lint==0.34.0 | ||
cfn-lint -t module.yml && cfn-lint -t test/*.yml | ||
pip install cfn-lint==1.20.1 | ||
cfn-lint -i W3002 W1011 -t module.yml && cfn-lint -i W3002 W1011 -t test/*.yml | ||
- name: license | ||
run: | | ||
grep -q "LICENSE-2.0" module.yml |
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,30 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
permissions: | ||
id-token: write | ||
contents: read | ||
concurrency: | ||
group: test | ||
cancel-in-progress: false | ||
jobs: | ||
build: | ||
runs-on: ['ubuntu-latest'] | ||
steps: | ||
- uses: 'actions/checkout@v2' | ||
- uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: 'arn:aws:iam::068189904525:role/github-openid-connect' | ||
aws-region: 'eu-west-1' | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
- name: test | ||
run: | | ||
npm ci | ||
cd test | ||
npm ci | ||
CFN_PACKAGE_BUCKET_NAME=cf-templates-1a2zmgbg9ut4o-eu-west-1 npm test | ||
cd - |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.