Skip to content

Commit 1fcdcdf

Browse files
committed
Fix workflows
1 parent fa6b10c commit 1fcdcdf

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
node-version: 20
2424
- run: npm i -g pnpm && pnpm i
2525
name: Install dependencies
26+
- name: Build examples
27+
run: pnpm build --filter esbuild-plugin-react18-css-example
2628
- name: Test
2729
run: npm test
2830
- run: git status && git clean -f -d && git status

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
- run: npm i -g pnpm && pnpm i
3333
name: Install dependencies
3434
# fail and not publish if any of the unit tests are failing
35+
- name: Build examples
36+
run: pnpm build --filter esbuild-plugin-react18-css-example
3537
- name: Test
3638
run: pnpm test
3739
- name: Create release and publish to NPM

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
node-version: 20
1818
- run: npm i -g pnpm && pnpm i
1919
name: Install dependencies
20+
- name: Build examples
21+
run: pnpm build --filter esbuild-plugin-react18-css-example
2022
- name: Run unit tests
2123
run: pnpm test
2224
- name: Upload coverage reports to Codecov

0 commit comments

Comments
 (0)