diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c414a56..d16f81e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,6 +20,8 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install Dependencies - run: npx npm-install-peers + run: | + npm install + npx npm-install-peers - name: Run linters run: npm run lint diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2f6b8f7..12bc34a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,7 +20,9 @@ jobs: with: node-version-file: '.nvmrc' - name: Install Dependencies - run: npx npm-install-peers + run: | + npm install + npx npm-install-peers - name: Run linters run: npm run lint - name: Semantic Release