chore(yarn): adjusting timeouts for github workflows

This commit is contained in:
Timothy Stewart 2021-10-05 22:15:46 -05:00
parent ac1c844b6e
commit 3640b4b3b5
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies, Test, and Build
run: |
yarn install --frozen-lockfile --check-files
yarn install --frozen-lockfile --check-files --network-timeout 600000
yarn ci
env:
CI: true

View File

@ -22,7 +22,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies, Test, and Build
run: |
yarn install --frozen-lockfile --check-files
yarn install --frozen-lockfile --check-files --network-timeout 600000
yarn ci
env:
CI: true

View File

@ -4,9 +4,9 @@ COPY package.json ./
COPY yarn.lock ./
COPY src ./src
COPY public ./public
RUN yarn install --frozen-lockfile --check-files
RUN yarn install --frozen-lockfile --check-files --network-timeout 600000
RUN yarn build --noninteractive
RUN yarn install --frozen-lockfile --check-files --production --modules-folder node_modules_prod
RUN yarn install --frozen-lockfile --check-files --production --modules-folder node_modules_prod --network-timeout 600000
FROM node:14.17.4-alpine
WORKDIR /usr/src/app