mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(actions) node: add versions matrix
This commit is contained in:
parent
e236e87171
commit
b67526f09b
1 changed files with 10 additions and 4 deletions
14
.github/workflows/nodejs.yml
vendored
14
.github/workflows/nodejs.yml
vendored
|
|
@ -7,13 +7,19 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NAME: cloudcmd
|
||||
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version:
|
||||
- 14.x
|
||||
- 16.x
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Use Node.js 14.x
|
||||
- uses: actions/checkout@v1
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: [14.x, 16.x]
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
|
||||
- name: Install Redrun
|
||||
run:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue