Skip to content

Commit

Permalink
node version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mo Mesgin authored and Mo Mesgin committed Nov 10, 2023
1 parent fb164ae commit 6dea1fd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ jobs:
deploy:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14..21.3]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Node.js 14
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: ${{ matrix.node-version }}

- name: Setup SSH
uses: webfactory/[email protected]
Expand Down

0 comments on commit 6dea1fd

Please sign in to comment.