diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6019703..5a75431 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,7 +14,7 @@ jobs: with: node-version: 18 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm ci --force - run: npm test publish-npm: @@ -25,7 +25,7 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm ci --force - run: npm run build - run: npm publish env: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 769a796..1e2b2e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,5 +11,5 @@ jobs: with: node-version: 18 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm ci --force - run: npm test