Fix hash in filenames #806
Workflow file for this run
This file contains 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: performance_impact | |
on: pull_request | |
jobs: | |
perf_impact: | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
node: [22.3.0] | |
runs-on: ${{ matrix.os }} | |
name: performance impact | |
steps: | |
- name: Setup git | |
uses: actions/checkout@v4 | |
- name: Setup node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install node modules | |
run: npm install | |
- name: Install playwright | |
run: npx playwright install-deps | |
- name: Report performance impact | |
run: node --expose-gc ./.github/workflows/pr_impact_on_performances.mjs | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |