Skip to content

feat: remove custom script add only comments #207

feat: remove custom script add only comments

feat: remove custom script add only comments #207

Workflow file for this run

name: 'Build and test user-flow action'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: install
run: npm i
- name: build:user-flow-gh-action
run: npm run nx build user-flow-gh-action
- name: commit:build:user-flow-gh-action (GitHub's registry is GitHub so we need it compiled)
uses: EndBug/add-and-commit@v7
with:
author_name: push-based.io
author_email: [email protected]
message: 'Persist user-flow-gh-action'
add: '*'
- name: test-unit:user-flow-gh-action
run: npm run nx test user-flow-gh-action
- name: test-integration:user-flow-gh-action
run: npm run nx test user-flow-gh-action-e2e
- name: run:user-flow-gh-action (needed to test-e2e the outputs)
id: localRun
uses: ./dist/packages/user-flow-gh-action/
with:
commentId: test-e2e-the-outputs
dryRun: off
verbose: on
url: https://google.com
ufPath: ./user-flows
outPath: ./packages/user-flow-gh-action-e2e/measures
format: html,json
rcPath: ./.user-flowrc.json
- name: test-e2e:user-flow-gh-action
run: npm run postLocalCiRunTest -- --r="${{ steps.localRun.outputs.resultSummary }}"