Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Excluded lambda@edge #47

Merged
merged 7 commits into from
Jul 7, 2021
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
26 changes: 1 addition & 25 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- run:
name: build source
command: npm i && cd keycloak-cloudfront-dynamodb && npm i
command: npm i
- run:
name: lint
command: npm run lint
Expand Down Expand Up @@ -42,30 +42,6 @@ jobs:
- run:
name: lint example/keycloak-authorizer ui
command: cd example/keycloak-authorizer/ui && npm run lint
- run:
name: build example/keycloak-cloudfront cloudfront-cdk
command: cd example/keycloak-cloudfront/keycloak-cloudfront-cdk && npm i
- run:
name: build example/keycloak-cloudfront lambda-edge-example
command: cd example/keycloak-cloudfront/lambda-edge-example && npm i && npm run build
- run:
name: build example/keycloak-cloudfront cloudfront
command: cd example/keycloak-cloudfront && npm i && npm run build
- run:
name: lint example/keycloak-cloudfront cloudfront
command: cd example/keycloak-cloudfront && npm run lint
- run:
name: build example/keycloak-cloudfront-portal cloudfront-cdk
command: cd example/keycloak-cloudfront-portal/keycloak-cloudfront-cdk && npm i
- run:
name: build example/keycloak-cloudfront-portal lambda-edge-example
command: cd example/keycloak-cloudfront-portal/lambda-edge-example && npm i && npm run build
- run:
name: build example/keycloak-cloudfront-portal cloudfront
command: cd example/keycloak-cloudfront-portal && npm i && npm run build
- run:
name: lint example/keycloak-cloudfront-portal cloudfront
command: cd example/keycloak-cloudfront-portal && npm run lint
- run:
name: lint example/chain-service-calls/frontend
command: cd example/chain-service-calls/frontend && npm i && npm run lint
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i && cd keycloak-cloudfront-dynamodb && npm i
- run: npm i
- run: npm run lint
- run: npm run test
- run: cd example/keycloak-authorizer/serverless && npm i
Expand All @@ -33,14 +33,6 @@ jobs:
- run: cd example/keycloak-authorizer/serverless-jwks && npm run lint
- run: cd example/keycloak-authorizer/ui && npm i
- run: cd example/keycloak-authorizer/ui && npm run lint
- run: cd example/keycloak-cloudfront/keycloak-cloudfront-cdk && npm i
- run: cd example/keycloak-cloudfront/lambda-edge-example && npm i && npm run build
- run: cd example/keycloak-cloudfront && npm i && npm run build
- run: cd example/keycloak-cloudfront && npm run lint
- run: cd example/keycloak-cloudfront-portal/keycloak-cloudfront-cdk && npm i
- run: cd example/keycloak-cloudfront-portal/lambda-edge-example && npm i && npm run build
- run: cd example/keycloak-cloudfront-portal && npm i && npm run build
- run: cd example/keycloak-cloudfront-portal && npm run lint
- run: cd example/chain-service-calls/frontend && npm i && npm run lint
- run: cd example/chain-service-calls/service1 && npm i && npm run lint
- run: cd example/chain-service-calls/service2 && npm i && npm run lint
Expand Down
Loading