Skip to content
This repository was archived by the owner on Jun 3, 2023. It is now read-only.

Commit 5929e1b

Browse files
author
Victor Navarro
committed
ci: fix matrix node include
1 parent 7bed832 commit 5929e1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/node-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
node: [yes, no]
11+
node: [with-node, without-node]
1212
exclude:
1313
- os: windows-latest
14-
node: no
14+
node: without-node
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2
1818
- name: Setup Node
1919
uses: actions/setup-node@v1
20-
if: ${{ matrix.node }}
20+
if: ${{ matrix.node == 'with-node' }}
2121
- name: Install Dependencies
2222
run: yarn install
2323
- name: Run Action

0 commit comments

Comments
 (0)