Skip to content

Commit 83b1d4b

Browse files
Update action.yml
1 parent 38632e2 commit 83b1d4b

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

action.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ inputs:
1212
AWS_ACCESS_KEY_ID_CHINA: {description: china aws access key id, required: true}
1313
AWS_SECRET_ACCESS_KEY_CHINA: {description: china aws secret access key, required: true}
1414
runs:
15-
using: composite
15+
on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
node-version: [10.x, 12.x, 14.x, 15.x]
1619
steps:
1720
- uses: actions/checkout@v3
18-
- name: deploy using Node.js
19-
shell: bash
20-
# language=bash
21+
- name: Use Node.js ${{ matrix.node-version }}
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: ${{ matrix.node-version }}
2125
run: |
2226
node --version
2327
npm --version

0 commit comments

Comments
 (0)