From 3a3fc32893e7347724792b3212cab80026a64304 Mon Sep 17 00:00:00 2001 From: John McCann Cunniff Jr Date: Mon, 19 Feb 2024 19:14:29 -0500 Subject: [PATCH] CHG disable annoying eslint --- .github/workflows/pull-request.yml | 4 ++-- web/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d48d0a36..7d49f871 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -57,7 +57,7 @@ jobs: working-directory: web strategy: matrix: - node-version: [ 14.x ] + node-version: [ 16.x ] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} @@ -75,4 +75,4 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - run: yarn install --frozen-lockfile - - run: yarn run build + - run: env DISABLE_ESLINT_PLUGIN=true yarn run build diff --git a/web/Dockerfile b/web/Dockerfile index 06a228ca..f1e02f01 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -2,7 +2,7 @@ FROM node:18-alpine # This disables webpack source maps from being created in the build step -ENV GENERATE_SOURCEMAP=false +ENV GENERATE_SOURCEMAP=false DISABLE_ESLINT_PLUGIN=true WORKDIR /opt/app COPY package.json yarn.lock /opt/app/