Skip to content

Commit 9e05c36

Browse files
authored
Update test.js.yml
1 parent 83a89ff commit 9e05c36

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/test.js.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ jobs:
1717
strategy:
1818
matrix:
1919
node-version: [10.x, 12.x, 14.x]
20-
20+
robot-version: [2.8.7, 2.9.2, 3.0.4]
2121
steps:
2222
- uses: actions/checkout@v2
23-
- name: Use Node.js ${{ matrix.node-version }}
23+
- name: Use Node.js ${{ matrix.node-version }} and
2424
uses: actions/setup-node@v1
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
- run: npm test
27+
robot-version: ${{ matrix.robot-version }}
28+
- run: |
29+
sudo pip install robotframework==${{ matrix.robot-version }}
30+
npm install
31+
npm test

0 commit comments

Comments
 (0)