Skip to content

Commit

Permalink
add build step to test and lint in continuous-deployment.yml (#543)
Browse files Browse the repository at this point in the history
Co-authored-by: Adham AboHasson <[email protected]>
  • Loading branch information
AdhamAH and AdhamAH authored Aug 16, 2024
1 parent 16445a7 commit 4581442
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: build packages
run: pnpm run build

- name: "Continuous Integration: lint"
run: pnpm run --if-present lint

Expand Down Expand Up @@ -103,6 +106,9 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: build packages
run: pnpm run build

- name: "Continuous Integration: test"
run: pnpm run --if-present test

Expand Down

0 comments on commit 4581442

Please sign in to comment.