Merge pull request #1075 from Sysvale/hotfix/number-input-money-model… #2900
Workflow file for this run
This file contains hidden or 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/setup-node@v2.1.4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: 🔧 Build | |
| run: npm i | |
| - name: 🚀 Run tests with coverage | |
| run: npx vitest run --coverage | |
| - name: 📊 Upload coverage to Codecov | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-report-${{ matrix.node-version }} | |
| path: coverage/ | |
| if-no-files-found: warn | |
| compression-level: 6 | |
| overwrite: true | |
| include-hidden-files: false |