From 1de9fa9c901310b8dde5e86ad6f5c3280b0e28da Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 18 Sep 2024 13:45:27 +0200 Subject: [PATCH] Fix installation on Github Windows Systems --- .github/workflows/test-and-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 217ff2b..3476c3f 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -30,7 +30,7 @@ jobs: with: node-version: '20.x' # Uncomment the following line if your adapter cannot be installed using 'npm ci' - # install-command: 'npm install' + install-command: 'npm install' type-checking: true lint: true @@ -50,7 +50,7 @@ jobs: node-version: ${{ matrix.node-version }} os: ${{ matrix.os }} # Uncomment the following line if your adapter cannot be installed using 'npm ci' - # install-command: 'npm install' + install-command: 'npm install' build: true # TODO: To enable automatic npm releases, create a token on npmjs.org @@ -78,7 +78,7 @@ jobs: with: node-version: '20.x' # Uncomment the following line if your adapter cannot be installed using 'npm ci' - # install-command: 'npm install' + install-command: 'npm install' build: true npm-token: ${{ secrets.NPM_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}