We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9098021 commit f89bdd5Copy full SHA for f89bdd5
.github/workflows/ci.yml
@@ -21,6 +21,9 @@ jobs:
21
uses: actions/setup-node@v2
22
with:
23
node-version: ${{ matrix.node-version }}
24
- - run: npm ci
25
- - run: npm run build --if-present
26
- - run: npm test
+ - name: Install NPM v5
+ run: if [[ `npm -v ` != 5* ]]; then npm i -g npm@5; fi
+ - name: Install Dependencies
27
+ run: npm install
28
+ - name: Test
29
+ run: grunt test
0 commit comments