We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e0c17 commit 30362eaCopy full SHA for 30362ea
1 file changed
.github/workflows/grunt.yml
@@ -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