Signed-off-by: Ajay Bura <ajbura@gmail.com>
name: 'Deploy'
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [14.x, 15.x, 16x]
+
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v2
+ with:
+ node-version: ${{ matrix.node-version }}
- uses: jsmrcaga/action-netlify-deploy@master
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
name: 'Deploy'
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [14.x, 15.x, 16x]
+
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v2
+ with:
+ node-version: ${{ matrix.node-version }}
- uses: jsmrcaga/action-netlify-deploy@master
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}