Skip to content

Commit 86a5075

Browse files
chore: separate TypeScript compilation and build steps in CI workflow (#160)
1 parent 8e4d781 commit 86a5075

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
- run: yarn lint
6262
- run: yarn test
6363
# Must run tsc first to generate the .d.ts files.
64-
- run: yarn tsc && yarn build
64+
- run: yarn tsc
65+
working-directory: .
66+
- run: yarn build
6567
# Version it with the version in the tag and upload it to a draft release.
6668
- run: yarn version --new-version ${{ needs.split-tag.outputs.version }}
6769
- run: yarn pack

0 commit comments

Comments
 (0)