Skip to content

Commit 30362ea

Browse files
committed
try
1 parent 14e0c17 commit 30362ea

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/grunt.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Grunt CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Node.js
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: '20' # Specify your required version
17+
18+
- name: Install dependencies
19+
run: npm install # Installs Grunt and plugins listed in package.json
20+
21+
- name: Run Grunt tasks
22+
run: npx grunt # Executes the default task or specify one: npx grunt build

0 commit comments

Comments
 (0)