chore: update ESLint configuration, upgrade dependencies, and fix lint errors #275
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: user-flow-gh-integration | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '*.md' | |
| jobs: | |
| user-flow-integrated-in-ci: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| name: Node ${{ matrix.node-version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'npm' | |
| node-version: ${{ matrix.node-version }} | |
| - name: install | |
| run: npm ci | |
| - name: Install Chrome for Puppeteer | |
| run: npx puppeteer browsers install chrome | |
| - name: run:user-flow-action | |
| uses: push-based/user-flow-gh-action@v0.3.2 | |
| with: | |
| rcPath: examples/github-report/.user-flowrc.json |