Skip to content

Commit

Permalink
ci: fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
william-mba committed Jan 19, 2025
1 parent 34aa798 commit 977abd7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tailwind-ng-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint:${{ matrix.project }}
run: pnpm lint:lib-core
- name: Build
run: pnpm build:${{ matrix.project }}
run: pnpm build:lib-core
- name: Test
run: |
pnpm install-chrome
pnpm test:${{ matrix.project }}:ci
pnpm test:lib-core:ci
- name: Display test results summary
uses: janisz/action@v2
with:
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/tailwind-ng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,15 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm add @tailwind-ng/core@file:projects/tailwind-ng-core/src
sed "s/tailwind-ng/temp/g" -i ./tsconfig.json
pnpm install
run: pnpm install
- name: Lint
run: pnpm lint:${{ matrix.project }}
run: pnpm lint:lib
- name: Build
run: pnpm build:${{ matrix.project }}
run: pnpm build:lib
- name: Test
run: |
sed "s/temp/tailwind-ng/g" -i ./tsconfig.json
pnpm install-chrome
pnpm test:${{ matrix.project }}:ci
pnpm test:lib:ci
- name: Publish test results summary
uses: janisz/action@v2
with:
Expand Down

0 comments on commit 977abd7

Please sign in to comment.