Skip to content

Commit 1b80023

Browse files
Made a prep branch ready to release
1 parent d92e3db commit 1b80023

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ jobs:
4444

4545
- name: Install dependencies
4646
run: make dev-dependencies
47-
47+
48+
- name: Compile all TypeScript Files
49+
run: tsc
50+
4851
- name: Run tests
4952
run: make test
5053

.github/workflows/release.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,9 @@ jobs:
2121
- name: Install dependencies
2222
run: npm ci
2323

24-
- name: Build
25-
run: npm run build
26-
2724
- name: Run tests
2825
run: npm test
2926

30-
- name: Upload Build Artifacts
31-
uses: actions/upload-artifact@v4
32-
with:
33-
name: dist
34-
path: dist/
35-
3627
- name: Publish to npm
3728
run: npm publish
3829
env:
@@ -46,19 +37,12 @@ jobs:
4637
- name: Checkout
4738
uses: actions/checkout@v4
4839

49-
- name: Download Build Artifacts
50-
uses: actions/download-artifact@v4
51-
with:
52-
name: dist
53-
path: dist/
54-
5540
- name: Set TAG
5641
run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
5742

5843
- name: Create release
5944
run: |
6045
gh release create ${{ env.TAG }} \
61-
dist/* \
6246
--title "${{ env.TAG }}" \
6347
--generate-notes \
6448
--draft

0 commit comments

Comments
 (0)