Skip to content

Commit

Permalink
Modernizing module
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswittig committed Dec 11, 2024
1 parent 23bd4a6 commit 8f870a7
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 14 deletions.
23 changes: 9 additions & 14 deletions .github/workflows/ci.yml → .github/workflows/lint.yml
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
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
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 -
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f870a7

Please sign in to comment.