We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f010b2e commit 9242bd0Copy full SHA for 9242bd0
1 file changed
.github/workflows/npm-publish.yml
@@ -7,16 +7,16 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- name: Checkout
10
- uses: actions/checkout@v4 # Use the latest version
+ uses: actions/checkout@v4
11
12
- name: Setup Node
13
- uses: actions/setup-node@v4 # Use the latest version
+ uses: actions/setup-node@v4
14
with:
15
node-version: '20'
16
registry-url: 'https://registry.npmjs.org'
17
18
- - name: Install dependencies and build 🔧
19
- run: npm install && npm run build # Changed npm ci to npm install
+ - name: Install dependencies 🔧
+ run: npm install
20
21
- name: Publish package on NPM 📦
22
run: npm publish
0 commit comments