refactor: revert migrate to 17 #185
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: user-flow-md-report-test | |
on: | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: ${{ matrix.node-version }} | |
- name: install | |
run: npm ci | |
- name: build | |
run: npm run nx -- affected:build | |
- name: run | |
run: npm run md-report-test | |
- name: Add reduced report as comment to the PR | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
hide_and_recreate: true | |
header: md-report-test | |
path: ./dist/user-flow/user-flow-gh-integration/md-report.md |