ignore engine

This commit is contained in:
skzhang1 2022-07-21 14:48:21 -04:00
parent aaec58908a
commit d88c7390ce
3 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ jobs:
- name: Test Build - name: Test Build
run: | run: |
if [ -e yarn.lock ]; then if [ -e yarn.lock ]; then
yarn install --frozen-lockfile yarn install --frozen-lockfile --ignore-engines
yarn build yarn build
elif [ -e package-lock.json ]; then elif [ -e package-lock.json ]; then
npm ci npm ci
@ -71,7 +71,7 @@ jobs:
- name: Build website - name: Build website
run: | run: |
if [ -e yarn.lock ]; then if [ -e yarn.lock ]; then
yarn install --frozen-lockfile yarn install --frozen-lockfile --ignore-engines
yarn build yarn build
elif [ -e package-lock.json ]; then elif [ -e package-lock.json ]; then
npm ci npm ci

View File

@ -23,7 +23,7 @@ RUN pre-commit install
RUN npm install --global yarn RUN npm install --global yarn
RUN pip install pydoc-markdown RUN pip install pydoc-markdown
RUN cd website RUN cd website
RUN yarn install --frozen-lockfile RUN yarn install --frozen-lockfile --ignore-engines
# override default image starting point # override default image starting point
CMD /bin/bash CMD /bin/bash

View File

@ -84,7 +84,7 @@ Then:
npm install --global yarn # skip if you use the dev container we provided npm install --global yarn # skip if you use the dev container we provided
pip install pydoc-markdown==4.5.0 # skip if you use the dev container we provided pip install pydoc-markdown==4.5.0 # skip if you use the dev container we provided
cd website cd website
yarn install --frozen-lockfile yarn install --frozen-lockfile --ignore-engines
pydoc-markdown pydoc-markdown
yarn start yarn start
``` ```