From 44fd2e48d935fccb855430fedc4248d87fa0fe6e Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 3 Jan 2024 09:35:59 +0200 Subject: [PATCH] test --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 306fa6ac4..db3331a4b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,15 +14,15 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 registry-url: https://registry.npmjs.org/ - - name: Install the latest version of the npm CLI - run: npm install -g npm@latest + - name: Install npm CLI + run: npm install -g npm@9.9.2 - name: Install dependencies and build run: | @@ -31,6 +31,6 @@ jobs: - name: Publish the package run: | - npm publish --provenance + npm publish --provenance --dry-run env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}