Skip to content

Commit 3a3fc32

Browse files
committed
CHG disable annoying eslint
1 parent e2bd337 commit 3a3fc32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
working-directory: web
5858
strategy:
5959
matrix:
60-
node-version: [ 14.x ]
60+
node-version: [ 16.x ]
6161
steps:
6262
- uses: actions/checkout@v4
6363
- name: Use Node.js ${{ matrix.node-version }}
@@ -75,4 +75,4 @@ jobs:
7575
restore-keys: |
7676
${{ runner.os }}-yarn-
7777
- run: yarn install --frozen-lockfile
78-
- run: yarn run build
78+
- run: env DISABLE_ESLINT_PLUGIN=true yarn run build

web/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:18-alpine
22

33

44
# This disables webpack source maps from being created in the build step
5-
ENV GENERATE_SOURCEMAP=false
5+
ENV GENERATE_SOURCEMAP=false DISABLE_ESLINT_PLUGIN=true
66

77
WORKDIR /opt/app
88
COPY package.json yarn.lock /opt/app/

0 commit comments

Comments
 (0)