Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*Issue #, if available:*

*Description of changes:*
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install Dependencies Node.js
id: install_nodejs
run: |
npm ci --optional --timing && npm run build
npm ci --optional && npm run build
- name: Run Unit Tests
id: unit_testing
run: |
Expand Down Expand Up @@ -68,9 +68,9 @@ jobs:
ls -la
mkdir ./dist
cp "$RPDK_PATH" ./dist
npm install --timing "./dist/$RPDK_PACKAGE"
npm install "./dist/$RPDK_PACKAGE"
cfn generate -vv && cfn validate -vv
npm install --optional --timing
npm install --optional
sam build --debug --build-dir ./build TypeFunction
sam build --debug --build-dir ./build TestEntrypoint
sam local invoke -t build/template.yaml --debug --event sam-tests/create.json --log-file sam.log TestEntrypoint
Expand Down
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ disable=

[BASIC]

good-names=e,ex,f,fp,i,j,k,n,_
good-names=e,ex,f,fp,i,j,k,v,n,_

[FORMAT]

Expand Down
166 changes: 87 additions & 79 deletions Pipfile.lock

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

Loading