chore(deps): bump amannn/action-semantic-pull-request from 335288255954904a41ddda8947c8f2c844b8bfeb to e7d011b07ef37e089bea6539210f6a0d360d8af9 #5
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: test | |
| on: | |
| workflow_call: | |
| pull_request_target: | |
| branches: [main] | |
| types: [opened, synchronize] | |
| concurrency: | |
| group: test-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0 | |
| - uses: actions/setup-node@cd2651c46231bc0d6f48d6b34433b845331235fe # v5.0.0 | |
| with: | |
| node-version-file: "package.json" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build extension | |
| run: npm run build | |
| - name: Run tests | |
| run: npm run test | |
| - name: Upload report | |
| uses: actions/upload-artifact@de65e23aa2b7e23d713bb51fbfcb6d502f8667d8 # v.4.6.2 | |
| if: always() | |
| with: | |
| name: test-report | |
| path: test-report/ | |
| retention-days: 30 |