Add missing build step to release workflow

This wasn't an issue before because the install step unintentionally ran the build script too.
This commit is contained in:
bjoluc 2024-07-18 00:42:56 +02:00
parent c499900e85
commit d44cef7c34
No known key found for this signature in database

View File

@ -38,6 +38,9 @@ jobs:
- name: Check types
run: npm run tsc
- name: Build packages
run: npm run build
- name: Run tests
run: npm run test -- --ci --maxWorkers=2