Skip to content

Commit 105632a

Browse files
authored
Merge pull request #230 from Hipo/chore/build-fixes
chore: update github action
2 parents af4cd8c + ad66d7f commit 105632a

3 files changed

Lines changed: 3895 additions & 3646 deletions

File tree

.github/workflows/new-version.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v1
13-
- uses: actions/setup-node@v1
12+
- name: Setup repo
13+
uses: actions/checkout@v3
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
1417
with:
15-
node-version: 10
16-
- run: npm install
17-
- 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
1825

1926
- id: publish-to-npm
2027
uses: JS-DevTools/npm-publish@v1

0 commit comments

Comments
 (0)