diff --git a/.circleci/config.yml b/.circleci/config.yml index 95f4045..fb94ad1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index bdc8bad..905a0dd 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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