We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469f632 commit 10bce3fCopy full SHA for 10bce3f
.github/workflows/ruby.yml
@@ -8,12 +8,32 @@
8
name: Ruby
9
on: [push]
10
jobs:
11
+ check_react_and_ujs:
12
+ strategy:
13
+ fail-fast: true
14
+ matrix:
15
+ ruby: [2.7]
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby }}
22
+ - uses: actions/setup-node@v3
23
+ - run: bundle install
24
+ - run: yarn
25
+ - run: bundle exec rake react:update
26
+ - run: bundle exec rake ujs:update
27
+ - name: Check for uncommitted changes
28
+ uses: mskri/check-uncommitted-changes-action@v1.0.1
29
+
30
31
test:
32
+ needs: check_react_and_ujs
33
strategy:
34
fail-fast: false
35
matrix:
- ruby:
- - 2.7.0
36
37
gemfile:
38
# These have shakapacker:
39
- rails_5.2_no_sprockets
0 commit comments