-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dlq-service during BB pipeline (#2617)
reverse optional dep logic and only add dlq-service during BB pipeline\
- Loading branch information
1 parent
12865e4
commit d8caaf7
Showing
6 changed files
with
2 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,6 @@ jobs: | |
with: | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: remove internal package | ||
run: | | ||
sed -i '/sqs-queue-dlq-service/d' ./package.json | ||
cat ./package.json | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn run lint | ||
- run: yarn run build:release | ||
|
@@ -35,10 +31,6 @@ jobs: | |
with: | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: remove internal package | ||
run: | | ||
sed -i '/sqs-queue-dlq-service/d' ./package.json | ||
cat ./package.json | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn run playwright install | ||
- name: create .env file | ||
|
@@ -92,10 +84,6 @@ jobs: | |
with: | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: remove internal package | ||
run: | | ||
sed -i '/sqs-queue-dlq-service/d' ./package.json | ||
cat ./package.json | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn spa:build | ||
- name: create .env file | ||
|
@@ -150,10 +138,6 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: remove internal package | ||
run: | | ||
sed -i '/sqs-queue-dlq-service/d' ./package.json | ||
cat ./package.json | ||
- name: Build Docker image | ||
uses: docker/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,5 @@ | |
"react-scripts": "^5.0.1", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.0.2" | ||
}, | ||
"optionalDependencies": {} | ||
} | ||
} |