File tree Expand file tree Collapse file tree 2 files changed +4
-17
lines changed
Expand file tree Collapse file tree 2 files changed +4
-17
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments