EPMRPP-108519 || Implement component for the side-panel #502
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: CI-pipeline | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - '!main' | |
| paths-ignore: | |
| - README.md | |
| - CHANGELOG.md | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Run lint | |
| run: npm run lint | |
| - name: Run tests and check coverage | |
| run: npm run test:coverage |