-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: corrige versão do node no test.yml para evitar incompatibilidade…
… com a nova versão do vitest
- Loading branch information
“RafaelGondi”
committed
Jan 23, 2025
1 parent
b47c19b
commit c59e199
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,17 @@ 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: 16.10.0 | ||
node-version: ${{ matrix.node-version }} | ||
- name: 🔧 Build | ||
run: | ||
npm i | ||
run: npm i | ||
- name: 🚀 Test | ||
run: npm run test |
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