From 4aaec1294c05bf0f7e6f8d18b04b54381c9b12e2 Mon Sep 17 00:00:00 2001 From: Arnout Boks Date: Fri, 16 Jun 2023 14:56:43 +0200 Subject: [PATCH] Use npm instead of yarn in GitHub Actions --- .github/workflows/ci.yml | 6 +++--- .gitignore | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85f7754..5846bbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,10 @@ jobs: node-version: 18 - name: Install dependencies - run: yarn install + run: npm install - name: Run test suite - run: yarn run test + run: npm run test publish: needs: build @@ -44,7 +44,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Install dependencies - run: yarn install + run: npm install - name: Set new version run: npm version --allow-same-version --no-git-tag-version ${{ github.event.release.tag_name }} diff --git a/.gitignore b/.gitignore index 9f0fdca..fc73c4f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /.idea/ /node_modules/ +/package-lock.json