Merge pull request #1891 from PrestaShop/dependabot/npm_and_yarn/test… #5177
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: JS tests | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| js-tests: | |
| name: JS tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20.x' | |
| - name: Install npm dependencies | |
| run: | |
| npm install --prefix ./_dev | |
| - name: Launch typescript linter | |
| run: | |
| npm run test --prefix ./_dev | |
| js-linter: | |
| name: JS linter syntax check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20.x' | |
| - name: Install npm dependencies | |
| run: | |
| npm install --prefix ./_dev | |
| - name: Launch typescript linter | |
| run: | | |
| npm run lint --prefix ./_dev || { | |
| echo "::error::ESLint check failed. Run 'npm run lint:fix' to autofix issues." | |
| exit 1 | |
| } |