Skip to content

Commit 2390f9f

Browse files
authored
Merge branch 'main' into docs/dev-basic-comments
2 parents a6f76df + e67c72a commit 2390f9f

File tree

13 files changed

+851
-1305
lines changed

13 files changed

+851
-1305
lines changed

.github/workflows/npm-publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: 20
18-
- run: npm ci
18+
- name: Remove node_modules and package-lock.json
19+
run: rm -rf node_modules package-lock.json
20+
- name: install dependencies
21+
run: npm install
1922
- run: npm test
2023

2124
publish-npm:
@@ -27,7 +30,10 @@ jobs:
2730
with:
2831
node-version: 20
2932
registry-url: https://registry.npmjs.org/
30-
- run: npm ci
33+
34+
- name: Remove node_modules and package-lock.json
35+
run: rm -rf node_modules package-lock.json
36+
- run: npm i
3137
- run: npm publish
3238
env:
3339
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,5 @@ vite.config.ts.timestamp-*
143143

144144
# smoke test files
145145
.smoke-test-*
146-
.tmp-smoke/**
146+
.tmp-smoke/**
147+
.DS_Store

0 commit comments

Comments
 (0)