We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6908404 commit e7507aeCopy full SHA for e7507ae
.github/workflows/ci.yml
@@ -32,7 +32,7 @@ jobs:
32
strategy:
33
fail-fast: false
34
matrix:
35
- os: [ubuntu-latest, windows-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest]
36
name:
37
- Node.js 10.x
38
- Node.js 11.x
@@ -108,10 +108,10 @@ jobs:
108
with:
109
persist-credentials: false
110
111
- - name: Install Node.js ${{ matrix.node-version }}
112
- shell: bash -eo pipefail -l {0}
113
- run: nvm install --default ${{ matrix.node-version }}
114
-
+ - name: Setup Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v4
+ with:
+ node-version: ${{ matrix.node-version }}
115
- name: Remove npm module(s) ${{ matrix.npm-rm }}
116
run: npm rm --silent --save-dev ${{ matrix.npm-rm }}
117
if: matrix.npm-rm != ''
0 commit comments