mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2024-11-22 05:25:13 +01:00
chore(yarn): adjusting timeouts for github workflows
This commit is contained in:
parent
ac1c844b6e
commit
3640b4b3b5
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -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
|
||||
|
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
@ -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
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user