-
Notifications
You must be signed in to change notification settings - Fork 64.1k
Add GitHub Actions workflow for NodeJS with Grunt #41094
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,28 @@ | ||||||||||||||||||||||||
| name: NodeJS with Grunt | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| on: | ||||||||||||||||||||||||
| push: | ||||||||||||||||||||||||
| branches: [ "main" ] | ||||||||||||||||||||||||
| pull_request: | ||||||||||||||||||||||||
| branches: [ "main" ] | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| jobs: | ||||||||||||||||||||||||
| build: | ||||||||||||||||||||||||
| runs-on: ubuntu-latest | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| strategy: | ||||||||||||||||||||||||
| matrix: | ||||||||||||||||||||||||
| node-version: [18.x, 20.x, 22.x] | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| steps: | ||||||||||||||||||||||||
| - uses: actions/checkout@v4 | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| - name: Use Node.js ${{ matrix.node-version }} | ||||||||||||||||||||||||
| uses: actions/setup-node@v4 | ||||||||||||||||||||||||
| with: | ||||||||||||||||||||||||
| node-version: ${{ matrix.node-version }} | ||||||||||||||||||||||||
|
|
||||||||||||||||||||||||
| - name: Build | ||||||||||||||||||||||||
| run: | | ||||||||||||||||||||||||
| npm install | ||||||||||||||||||||||||
| grunt | ||||||||||||||||||||||||
|
Comment on lines
+25
to
+28
|
||||||||||||||||||||||||
| - name: Build | |
| run: | | |
| npm install | |
| grunt | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Grunt build | |
| run: grunt |
Copilot
AI
Nov 2, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Running 'grunt' without specifying a task relies on the default task being configured in Gruntfile. Consider explicitly specifying the task name (e.g., 'grunt build' or 'grunt test') to make the workflow's intent clearer and more maintainable.
| grunt | |
| grunt build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow runs 'npm install' without using a lockfile verification step. Consider adding 'npm ci' instead of 'npm install' to ensure reproducible builds and prevent potential security issues from dependency resolution changes. If using 'npm ci', ensure a package-lock.json file exists in the repository.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay