Skip to content

Commit d355f07

Browse files
authored
Add Github Actions workflow for nodejs portion of project (#351)
1 parent f5e2fb0 commit d355f07

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/tox.yml renamed to .github/workflows/actions.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
pull_request:
1515

1616
jobs:
17-
build:
17+
build_python:
1818
name: ${{ matrix.name }}
1919
runs-on: ubuntu-18.04
2020
strategy:
@@ -46,3 +46,20 @@ jobs:
4646
- name: Test with tox
4747
run: |
4848
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+
run: |
63+
grunt test
64+
env:
65+
CI: true

0 commit comments

Comments
 (0)