Skip to content

Commit 0ef95ca

Browse files
committed
chore: ci running with different node versions
1 parent 6617618 commit 0ef95ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
name: 'Build and Push'
1111
# Definir o runner para rodar as actions
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
node: [ 14, 16, 18 ]
1316

1417
steps:
1518
- name: Checkout
@@ -18,7 +21,7 @@ jobs:
1821
- name: Install Node.js
1922
uses: actions/setup-node@v4
2023
with:
21-
node-version: 20
24+
node-version: ${{ matrix.node }}
2225

2326
- uses: pnpm/action-setup@v4
2427
name: Install pnpm

0 commit comments

Comments
 (0)