Skip to content

Commit e7507ae

Browse files
committed
ci: only linux and windows
Signed-off-by: Sebastian Beltran <[email protected]>
1 parent 6908404 commit e7507ae

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
os: [ubuntu-latest, windows-latest, macos-latest]
35+
os: [ubuntu-latest, windows-latest]
3636
name:
3737
- Node.js 10.x
3838
- Node.js 11.x
@@ -108,10 +108,10 @@ jobs:
108108
with:
109109
persist-credentials: false
110110

111-
- name: Install Node.js ${{ matrix.node-version }}
112-
shell: bash -eo pipefail -l {0}
113-
run: nvm install --default ${{ matrix.node-version }}
114-
111+
- name: Setup Node.js ${{ matrix.node-version }}
112+
uses: actions/setup-node@v4
113+
with:
114+
node-version: ${{ matrix.node-version }}
115115
- name: Remove npm module(s) ${{ matrix.npm-rm }}
116116
run: npm rm --silent --save-dev ${{ matrix.npm-rm }}
117117
if: matrix.npm-rm != ''

0 commit comments

Comments
 (0)