Skip to content

Commit

Permalink
Ensure we build and package all projects during builds
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGinnivan committed Oct 31, 2023
1 parent 1ba4d89 commit 8ad69f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,8 @@ jobs:
- name: Type check
run: pnpm tsc -b

- name: Lint types and code
run: pnpm run lint

- name: Run tests
run: pnpm test

- name: Package libs
run: pnpm package
- name: Lint, build and test
run: pnpm nx run-many --target build,lint,test,package --all --exclude examples-dotnet-api

- name: Release NPM packages
run: pnpm publish -r --access public
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ jobs:
- name: Build packages
run: pnpm tsc -b

- name: Lint types and code
run: pnpm run lint

- name: Tests
run: pnpm run test
- name: Lint, build and test
run: pnpm nx run-many --target build,lint,test --all --exclude examples-dotnet-api

- name: Version command
id: version
Expand Down

0 comments on commit 8ad69f8

Please sign in to comment.