Skip to content
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generator tests
name: Generator tests # TODO needs to be duplicated for RoR Pro

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Main test
name: Integration Tests

on:
push:
Expand All @@ -7,10 +7,12 @@ on:
paths-ignore:
- '**.md'
- 'docs/**'
- 'react_on_rails_pro/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'react_on_rails_pro/**'
workflow_dispatch:
inputs:
force_run:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/lint-js-and-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ on:
paths-ignore:
- '**.md'
- 'docs/**'
- 'react_on_rails_pro/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'react_on_rails_pro/**'
workflow_dispatch:
inputs:
force_run:
description: 'Force run all jobs (bypass detect-changes)'
required: false
type: boolean
default: false

jobs:
detect-changes:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/package-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ on:
- 'docs/**'
- 'lib/**'
- 'spec/react_on_rails/**'
- 'react_on_rails_pro/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/react_on_rails/**'
- 'react_on_rails_pro/**'
workflow_dispatch:
inputs:
force_run:
description: 'Force run all jobs (bypass detect-changes)'
required: false
type: boolean
default: false

jobs:
detect-changes:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@ name: Playwright E2E Tests
on:
push:
branches: [master]
paths-ignore:
- '**.md'
- 'docs/**'
workflow_dispatch:
inputs:
force_run:
description: 'Force run all jobs (bypass detect-changes)'
required: false
type: boolean
default: false

jobs:
playwright:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/**'
workflow_dispatch:
inputs:
force_run:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/pro-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/react_on_rails/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/react_on_rails/**'
workflow_dispatch:
inputs:
force_run:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/pro-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/react_on_rails/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'lib/**'
- 'spec/**'
- 'packages/react_on_rails/**'
workflow_dispatch:
inputs:
force_run:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ on:
paths-ignore:
- '**.md'
- 'docs/**'
- 'packages/react-on-rails/src/**'
- 'node_package/src/**'
- 'packages/**'
- 'react_on_rails_pro/**'
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
- 'packages/react-on-rails/src/**'
- 'node_package/src/**'
- 'packages/**'
- 'react_on_rails_pro/**'
workflow_dispatch:
inputs:
force_run:
description: 'Force run all jobs (bypass detect-changes)'
required: false
type: boolean
default: false

jobs:
detect-changes:
Expand Down
2 changes: 1 addition & 1 deletion script/ci-changes-detector
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ while IFS= read -r file; do
;;

# GitHub workflows
.github/workflows/*)
.github/workflows/*|rakelib/*)
DOCS_ONLY=false
WORKFLOWS_CHANGED=true
;;
Expand Down