fix #108 - ensure container names are unique for matrix runs

This commit is contained in:
Casey Lee
2020-03-04 16:24:14 -08:00
parent 4f84be12e3
commit 59b9b8e97a
3 changed files with 12 additions and 2 deletions

View File

@@ -13,3 +13,13 @@ jobs:
matrix:
os: [ubuntu-18.04, macos-latest]
node: [4, 6, 8, 10]
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [8.x, 10.x, 12.x, 13.x]
steps:
- run: echo ${NODE_VERSION} | grep ${{ matrix.node }}
env:
NODE_VERSION: ${{ matrix.node }}