We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a89ff commit 9e05c36Copy full SHA for 9e05c36
1 file changed
.github/workflows/test.js.yml
@@ -17,11 +17,15 @@ jobs:
17
strategy:
18
matrix:
19
node-version: [10.x, 12.x, 14.x]
20
-
+ robot-version: [2.8.7, 2.9.2, 3.0.4]
21
steps:
22
- uses: actions/checkout@v2
23
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js ${{ matrix.node-version }} and
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm test
+ robot-version: ${{ matrix.robot-version }}
28
+ - run: |
29
+ sudo pip install robotframework==${{ matrix.robot-version }}
30
+ npm install
31
+ npm test
0 commit comments