Skip to content

Commit 317df5c

Browse files
committed
chore: remove grunt + update dev tools
1 parent 48e1f09 commit 317df5c

20 files changed

+2735
-730
lines changed

.github/PULL_REQUEST_TEMPLATE.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
- [ ] I read the [guidelines for contributing](https://github.com/mistic100/jQuery-QueryBuilder/blob/master/.github/CONTRIBUTING.md)
44
- [ ] I created my branch from `dev` and I am issuing the PR to `dev`
55
- [ ] I didn't pushed the `dist` directory
6-
- [ ] Unit tests are OK
76
- [ ] If it's a new feature, I added the necessary unit tests
87
- [ ] If it's a new language, I filled the `__locale` and `__author` fields

.github/workflows/main.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- name: build
13-
run: |
14-
npm install
15-
npm run test
16-
npm run build
11+
- uses: actions/checkout@v3
12+
13+
- uses: actions/setup-node@v3
14+
with:
15+
node-version: '16'
16+
cache: 'yarn'
17+
18+
- name: build
19+
run: |
20+
yarn install
21+
yarn build

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
bower_components
21
node_modules
32
dist
43
doc
54
.sass-cache
6-
.coverage-results
75
.idea
86
*.iml
9-
yarn.lock
107
package-lock.json

.jscsrc

-37
This file was deleted.

.jshintrc

-4
This file was deleted.

.sass-lint.yml

-9
This file was deleted.

0 commit comments

Comments
 (0)