ci: support mutiple node versions

This commit is contained in:
wewoor 2023-05-12 11:05:21 +08:00
parent 7a2182d752
commit 2617fd0823

View File

@ -1,4 +1,4 @@
name: Node CI name: CI
# Triggers the workflow on push or pull request events but only for the master branch # Triggers the workflow on push or pull request events but only for the master branch
on: on:
@ -18,6 +18,11 @@ jobs:
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: cache yarn.lock - name: cache yarn.lock
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -50,6 +55,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Restore cache from yarn.lock - name: Restore cache from yarn.lock
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -73,6 +83,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Restore cache from yarn.lock - name: Restore cache from yarn.lock
uses: actions/cache@v2 uses: actions/cache@v2
with: with: