diff --git a/.github/actions/setup-snackager/action.yml b/.github/actions/setup-snackager/action.yml index f975e8d4e..94631d98c 100644 --- a/.github/actions/setup-snackager/action.yml +++ b/.github/actions/setup-snackager/action.yml @@ -15,12 +15,6 @@ runs: node-version: ${{ inputs.node-version }} cache: yarn - # npm v7+ doesn't work well with our monorepo - - name: 🐛 Downgrade npm to v6 - run: npm install --global npm@^6 - working-directory: ../ - shell: bash - - name: 📦 Install dependencies run: yarn install --frozen-lockfile --ignore-scripts shell: bash diff --git a/snackager/Dockerfile b/snackager/Dockerfile index f754b2665..6ead803f5 100644 --- a/snackager/Dockerfile +++ b/snackager/Dockerfile @@ -22,9 +22,6 @@ ENV NODE_OPTIONS --openssl-legacy-provider ARG APP_VERSION ENV APP_VERSION ${APP_VERSION} -# Install system dependencies -RUN npm install --global npm@^6 - # --- Development - Prepare Snackager for development FROM base as development