fix: corrige versão do node no test.yml para evitar incompatibilidade… #1583
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Tester ⚗️" | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- name: 📚 Checkout | |
uses: actions/checkout@v2 | |
- name: 🟢 Node | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 🔧 Build | |
run: npm i | |
- name: 🚀 Test | |
run: npm run test |