Fix broken links in CHANGELOG.md when displayed on GitHub (close #913) #1375
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: E2E Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| skip_check: | |
| name: Skip Check | |
| continue-on-error: true | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
| steps: | |
| - id: skip_check | |
| uses: fkirc/skip-duplicate-actions@v5.3.2 | |
| with: | |
| concurrent_skipping: 'never' | |
| skip_after_successful_duplicate: 'true' | |
| paths: '[ | |
| ".github/workflows/e2e-test.yml", | |
| "gem/**", | |
| "test/e2e/**", | |
| "Gemfile.lock", | |
| "bun.lockb" | |
| ]' | |
| paths_ignore: '[ | |
| "gem/config/**", | |
| "gem/locales/**", | |
| "!gem/locales/en.yml", | |
| "**/*.md" | |
| ]' | |
| do_not_skip: '["workflow_dispatch"]' | |
| e2e_test: | |
| needs: skip_check | |
| if: ${{ needs.skip_check.outputs.should_skip != 'true' }} | |
| name: E2E Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Chrome | |
| uses: browser-actions/setup-chrome@v2 | |
| with: | |
| chrome-version: latest | |
| - name: Set up ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '4.0' | |
| bundler-cache: true | |
| - name: Test E2E apps | |
| run: bundle exec thor test:e2e:apps |