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 f5e2fb0 commit d355f07Copy full SHA for d355f07
.github/workflows/tox.yml renamed to .github/workflows/actions.yml
@@ -14,7 +14,7 @@ on:
14
pull_request:
15
16
jobs:
17
- build:
+ build_python:
18
name: ${{ matrix.name }}
19
runs-on: ubuntu-18.04
20
strategy:
@@ -46,3 +46,20 @@ jobs:
46
- name: Test with tox
47
run: |
48
python -m tox -e ${{ matrix.name }}
49
+ build_javascript:
50
+ name: grunt
51
+ runs-on: ubuntu-18.04
52
+ steps:
53
+ - uses: actions/checkout@v2
54
+ - name: Use Node.js ${{ matrix.node-version }}
55
+ uses: actions/setup-node@v1
56
+ with:
57
+ node-version: '12.x'
58
+ - name: Install Dependencies
59
+ run: |
60
+ npm install [email protected] grunt-cli grunt grunt-contrib-qunit
61
+ - name: QUnit Tests
62
63
+ grunt test
64
+ env:
65
+ CI: true
0 commit comments