Skip to content

Commit

Permalink
CHG disable annoying eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Feb 20, 2024
1 parent e2bd337 commit 3a3fc32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 3a3fc32

Please sign in to comment.