deps: Bump tar from 6.2.1 to 7.5.6 #3539
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| # No permissions are required for this workflow | |
| permissions: {} | |
| jobs: | |
| test: | |
| name: General checks, tests and coverage reporting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js 20.11.0 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20.11.0 | |
| - name: Install dependencies | |
| run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo | |
| - name: Perform ESLint check | |
| run: npm run lint | |
| - name: Perform Licenses check | |
| run: npm run check-licenses | |
| - name: Perform dependency check | |
| run: npm run depcheck | |
| - name: Perform build | |
| run: npm run build-test | |
| - name: Run unit tests | |
| run: npm run coverage | |
| - name: Send report to Coveralls for package @ui5/linter | |
| uses: coverallsapp/github-action@v2.3.7 | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |