Browse Source

tests: fix github action node version

pull/11323/head
afc163 2 years ago
parent
commit
29bc0feccb
  1. 6
      .github/workflows/ci.yml

6
.github/workflows/ci.yml

@ -10,12 +10,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [16.x, 14.x]
node_version: [20, 16]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- run: echo ${{github.ref}}

Loading…
Cancel
Save