Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
vzakharchenko committed Apr 30, 2021
1 parent a437972 commit a2704b2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -68,19 +68,19 @@ jobs:
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 run lint && npm i
command: cd example/chain-service-calls/frontend && npm i && npm run lint
- run:
name: lint example/chain-service-calls/service1
command: cd example/chain-service-calls/service1 && npm run lint && npm i
command: cd example/chain-service-calls/service1 && npm i && npm run lint
- run:
name: lint example/chain-service-calls/service2
command: cd example/chain-service-calls/service2 && npm run lint && npm i
command: cd example/chain-service-calls/service2 && npm i && npm run lint
- run:
name: lint example/chain-service-calls/service3
command: cd example/chain-service-calls/service3 && npm run lint && npm i
command: cd example/chain-service-calls/service3 && npm i && npm run lint
- run:
name: lint example/express/frontend
command: cd example/express/frontend && npm run lint && npm i
command: cd example/express/frontend && npm i && npm run lint
- run:
name: lint example/express/express-service
command: cd example/express/express-service && npm run lint && npm i
command: cd example/express/express-service && npm i && npm run lint
10 changes: 6 additions & 4 deletions .github/workflows/nodejs.yml
Expand Up @@ -41,9 +41,11 @@ jobs:
- 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 run lint && npm i
- run: cd example/chain-service-calls/service1 && npm run lint && npm i
- run: cd example/chain-service-calls/service2 && npm run lint && npm i
- run: cd example/chain-service-calls/service3 && npm run lint && npm i
- 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
- run: cd example/chain-service-calls/service3 && npm i && npm run lint
- run: cd example/express/frontend && npm i && npm run lint
- run: cd example/express/express-service && npm i && npm run lint


0 comments on commit a2704b2

Please sign in to comment.