We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38632e2 commit 83b1d4bCopy full SHA for 83b1d4b
1 file changed
action.yml
@@ -12,12 +12,16 @@ inputs:
12
AWS_ACCESS_KEY_ID_CHINA: {description: china aws access key id, required: true}
13
AWS_SECRET_ACCESS_KEY_CHINA: {description: china aws secret access key, required: true}
14
runs:
15
- using: composite
+ on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ node-version: [10.x, 12.x, 14.x, 15.x]
19
steps:
20
- uses: actions/checkout@v3
- - name: deploy using Node.js
- shell: bash
- # language=bash
21
+ - name: Use Node.js ${{ matrix.node-version }}
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: ${{ matrix.node-version }}
25
run: |
26
node --version
27
npm --version
0 commit comments