Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This GitHub Actions workflow automates the process of installing Node.js dependencies via npm, and running build or development tasks using Gulp.js. It helps streamline continuous integration (CI) for JavaScript projects that use Gulp as a task runner.
🔧 Key Features:
✅ Automatically triggers on every push or pull request to the main (or specified) branch.
🧰 Sets up the correct Node.js version using actions/setup-node.
📦 Installs project dependencies with npm ci to ensure consistent installs based on the package-lock.json.
🚀 Executes gulp tasks to automate builds, testing, or other custom dev workflows.
📄 Ensures logs and build status are visible within GitHub Actions for easy debugging and monitoring.
📁 File Location:
.github/workflows/npm-gulp.yml
🛠 Example Use Cases:
Frontend web apps that compile SCSS, minify JS/CSS, or bundle files using Gulp.
Automated deployment workflows that rely on asset pipelines.
CI pipelines for JavaScript tools and libraries built using Gulp.