Skip to content

Commit

Permalink
chore: rework actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasio committed Oct 16, 2024
1 parent 5b290ab commit d4a301e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ESM Build Test
name: Build Test

on: [pull_request]

Expand Down Expand Up @@ -29,4 +29,4 @@ jobs:
- name: Install dependencies
run: npm install
- name: Build Vite Test Project
run: npm run build -- --filter=@headstartwp/vite-react-test
run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_bundle_analysis-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Build next.js app
# change this if your site requires a custom build command
run: npm run build --filter=wp-nextjs-app
run: npm run build -- --filter=wp-nextjs-app

# Here's the first place where next-bundle-analysis' own script is used
# This step pulls the raw bundle stats for the current bundle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_bundle_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Build next.js app
# change this if your site requires a custom build command
run: npm run build --filter=wp-nextjs
run: npm run build -- --filter=wp-nextjs-app

# Here's the first place where next-bundle-analysis' own script is used
# This step pulls the raw bundle stats for the current bundle
Expand Down

0 comments on commit d4a301e

Please sign in to comment.