fix: Simplify Meticulous workflow to use official GitHub Action #2
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: Meticulous Visual Regression Tests | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: {} | |
| permissions: | |
| actions: write | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| statuses: read | |
| jobs: | |
| test: | |
| name: Run Meticulous Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run Meticulous tests | |
| uses: alwaysmeticulous/report-diffs-action@v2 | |
| with: | |
| api-token: ${{ secrets.METICULOUS_API_TOKEN }} | |
| # Test against your live production n8n instance | |
| base-url: 'http://a414a6a1e26174420a74aa4eb4ae4df3-1583809330.us-west-2.elb.amazonaws.com:5678' | |