Skip to content

Commit

Permalink
chore: improve matrix labels in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Jan 6, 2021
1 parent 4a089a5 commit da7bec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
matrix:
node-version: [10.x, 12.x]
nexus-schema-version: [^1.0.0]
nexus: [nexus@^1.0.0]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn add nexus@${{ matrix.nexus-schema-version }}
- run: yarn add ${{ matrix.nexus }}
- run: yarn build
- run: yarn -s test
4 changes: 2 additions & 2 deletions .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
strategy:
matrix:
node-version: [10.x, 12.x]
nexus-schema-version: [^1.0.0]
nexus: [nexus@^1.0.0]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn add nexus@${{ matrix.nexus-schema-version }}
- run: yarn add ${{ matrix.nexus }}
- run: yarn build
- run: yarn -s test

0 comments on commit da7bec0

Please sign in to comment.