Skip to content

Commit 266af19

Browse files
committed
grunt
1 parent 80a4844 commit 266af19

File tree

6 files changed

+43
-11692
lines changed

6 files changed

+43
-11692
lines changed

.github/workflows/grunt.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: grunt
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
grunt:
7+
strategy:
8+
matrix:
9+
os: [ubuntu-20.04]
10+
java: [17]
11+
node: [16]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: ${{ matrix.node }}
18+
- run: npm install
19+
- run: npm install --force -g grunt-cli
20+
- run: grunt

.github/workflows/pdd.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: pdd
3+
"on":
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
jobs:
11+
pdd:
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: g4s8/pdd-action@master

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ build/
77
*.sh
88
.idea/
99
temp/
10+
npm-shrinkwrap.json

Gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ module.exports = function(grunt) {
5757
},
5858
dist: {
5959
options: {
60+
sourceMap: true,
6061
outputStyle: 'compressed',
61-
sourceMap: false
62+
implementation: require('node-sass')
6263
},
6364
files: [
6465
{

0 commit comments

Comments
 (0)