We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af4cd8c + ad66d7f commit 105632aCopy full SHA for 105632a
3 files changed
.github/workflows/new-version.yml
@@ -9,12 +9,19 @@ jobs:
9
publish:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v1
13
- - uses: actions/setup-node@v1
+ - name: Setup repo
+ uses: actions/checkout@v3
14
+
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v3
17
with:
- node-version: 10
- - run: npm install
- - run: npm run build
18
+ node-version: 18.0.0
19
20
+ - name: Install dependencies
21
+ run: npm install
22
23
+ - name: Build
24
+ run: npm run build
25
26
- id: publish-to-npm
27
uses: JS-DevTools/npm-publish@v1
0 commit comments