Merge pull request #357 from wazuh/change/356-bump-4103-rev01 #976
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: Unit Tests | |
| on: [push, pull_request] | |
| jobs: | |
| unit-tests: | |
| name: Run unit tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] # Removed windows-latest, macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # - name: Enable longer filenames | |
| # if: ${{ matrix.os == 'windows-latest' }} | |
| # run: git config --system core.longpaths true | |
| - name: Checkout Branch | |
| uses: actions/checkout@v4 | |
| - id: install-dashboards | |
| uses: derek-ho/setup-opensearch-dashboards@v3 | |
| with: | |
| plugin_name: wazuh-security-dashboards-plugin | |
| app_reference: ${{ vars.WZD_REF }} | |
| - name: Run lint | |
| run: yarn lint | |
| working-directory: ${{ steps.install-dashboards.outputs.plugin-directory }} | |
| - name: Run unit test | |
| run: yarn test:jest_ui --coverage | |
| working-directory: ${{ steps.install-dashboards.outputs.plugin-directory }} | |
| - name: Uploads coverage | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |