Skip to content

Commit f89bdd5

Browse files
committed
wip
1 parent 9098021 commit f89bdd5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
uses: actions/setup-node@v2
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
- run: npm ci
25-
- run: npm run build --if-present
26-
- run: npm test
24+
- name: Install NPM v5
25+
run: if [[ `npm -v ` != 5* ]]; then npm i -g npm@5; fi
26+
- name: Install Dependencies
27+
run: npm install
28+
- name: Test
29+
run: grunt test

0 commit comments

Comments
 (0)