From 305a06d87c953d696d28a3320933ac5dac303c42 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 25 Dec 2020 12:19:27 -0600 Subject: [PATCH] ci: use npm to build to bypass apm https://github.com/atom/apm/pull/892 --- .github/workflows/CI.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3ff43bd5..9fd34985 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,9 +24,10 @@ jobs: - name: Versions run: apm -v - - name: Install APM dependencies + - name: Install dependencies run: | - apm install + apm install --production + npm install --only=dev - name: Run Ubuntu tests if: ${{ contains(matrix.os, 'ubuntu') }}