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

fix: creating inbound server #329

Merged
merged 5 commits into from
Jul 4, 2022
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
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
name: Delete build dependencies
command: apk del build-dependencies
- save_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
paths:
- node_modules

Expand All @@ -105,7 +105,7 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Execute unit tests
command: npm run test
Expand All @@ -125,7 +125,7 @@ jobs:
chmod +x ~/docker-compose
sudo mv ~/docker-compose /usr/local/bin/docker-compose
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Set up NVM
command: |
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Execute unit tests
command: npm run build:openapi && npm run validate:api
Expand All @@ -184,7 +184,7 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Create dir for lint results
command: mkdir -p /lintresults
Expand All @@ -202,7 +202,7 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Create dir for test results
command: mkdir -p ./audit/results
Expand All @@ -222,7 +222,7 @@ jobs:
- run:
<<: *defaults_license_scanner
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Prune non-production packages before running license-scanner
command: npm prune --production
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Configure git
command: |
Expand Down Expand Up @@ -413,7 +413,7 @@ jobs:
name: Install general dependencies
command: *defaults_Dependencies
- restore_cache:
key: dependency-cache-v3-{{ checksum "package-lock.json" }}
key: dependency-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: setup environment vars for LATEST release
command: |
Expand Down
Loading