Skip to content

Commit e69019c

Browse files
committed
build package in workflow
1 parent cf85807 commit e69019c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/push-to-npm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Install dependencies
2525
run: pnpm install --frozen-lockfile
2626

27+
- name: Build package
28+
run: pnpm build
29+
2730
- name: Publish
2831
shell: bash
2932
run: pnpm publish --access public --no-git-checks

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ jobs:
2424
registry-url: https://registry.npmjs.org
2525

2626
- name: Install dependencies
27-
run: pnpm install --frozen-lockfile
27+
run: pnpm install --frozen-lockfile
28+
29+
- name: Build package
30+
run: pnpm build

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vrchat-location-parser",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Parser for VRchat Locations",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)