File tree 6 files changed +2
-25
lines changed
6 files changed +2
-25
lines changed Original file line number Diff line number Diff line change 18
18
with :
19
19
path : ' **/node_modules'
20
20
key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
21
- - name : remove internal package
22
- run : |
23
- sed -i '/sqs-queue-dlq-service/d' ./package.json
24
- cat ./package.json
25
21
- run : yarn install --frozen-lockfile
26
22
- run : yarn run lint
27
23
- run : yarn run build:release
35
31
with :
36
32
path : ' **/node_modules'
37
33
key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
38
- - name : remove internal package
39
- run : |
40
- sed -i '/sqs-queue-dlq-service/d' ./package.json
41
- cat ./package.json
42
34
- run : yarn install --frozen-lockfile
43
35
- run : yarn run playwright install
44
36
- name : create .env file
92
84
with :
93
85
path : ' **/node_modules'
94
86
key : ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
95
- - name : remove internal package
96
- run : |
97
- sed -i '/sqs-queue-dlq-service/d' ./package.json
98
- cat ./package.json
99
87
- run : yarn install --frozen-lockfile
100
88
- run : yarn spa:build
101
89
- name : create .env file
@@ -150,10 +138,6 @@ jobs:
150
138
runs-on : ubuntu-22.04
151
139
steps :
152
140
- uses : actions/checkout@v1
153
- - name : remove internal package
154
- run : |
155
- sed -i '/sqs-queue-dlq-service/d' ./package.json
156
- cat ./package.json
157
141
- name : Build Docker image
158
142
159
143
with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ COPY . /app
14
14
WORKDIR /app
15
15
16
16
# Installing packages
17
- RUN sed -i '/sqs-queue-dlq-service/d' ./package.json
18
17
RUN cat ./package.json
19
18
RUN yarn install --frozen-lockfile
20
19
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ COPY . /app
18
18
WORKDIR /app
19
19
20
20
# Installing packages
21
- RUN rm .yarnrc
21
+ RUN yarn add @atlassian/sqs-queue-dlq-service
22
22
RUN yarn install --frozen-lockfile
23
23
RUN yarn list
24
24
Original file line number Diff line number Diff line change 182
182
"ts-node-dev" : " ^2.0.0" ,
183
183
"yaml-lint" : " ^1.2.4"
184
184
},
185
- "optionalDependencies" : {
186
- "@atlassian/sqs-queue-dlq-service" : " ^2.1.1"
187
- },
188
185
"volta" : {
189
186
"node" : " 18.18.1" ,
190
187
"yarn" : " 1.22.18"
Original file line number Diff line number Diff line change 71
71
"react-scripts" : " ^5.0.1" ,
72
72
"ts-jest" : " ^29.1.1" ,
73
73
"typescript" : " ^5.0.2"
74
- },
75
- "optionalDependencies" : {}
74
+ }
76
75
}
You can’t perform that action at this time.
0 commit comments