-
-
Notifications
You must be signed in to change notification settings - Fork 633
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow-up to #1606 #1611
Merged
Merged
Follow-up to #1606 #1611
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
aaa84dd
restrict style-loader version in rspec examples
Judahmeek 2af01e1
update dummy lockfiles
Judahmeek e20c6eb
move generator tests to separate job
Judahmeek c5e899b
add sqlite to gemspec
Judahmeek 44ed561
move squlite to dev_dependencies
Judahmeek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Generator tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
pull_request: | ||
|
||
jobs: | ||
examples: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Get changed files | ||
id: changed-files-specific | ||
uses: tj-actions/changed-files@v44 | ||
with: | ||
files: | | ||
lib/generators/** | ||
rakelib/example_type.rb | ||
rakelib/example_config.yml | ||
rakelib/examples.rake | ||
rakelib/run_rspec.rake | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.3 | ||
bundler: 2.5.3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
- name: Print system information | ||
run: | | ||
echo "Linux release: "; cat /etc/issue | ||
echo "Current user: "; whoami | ||
echo "Current directory: "; pwd | ||
echo "Ruby version: "; ruby -v | ||
echo "Node version: "; node -v | ||
echo "Yarn version: "; yarn --version | ||
echo "Bundler version: "; bundle --version | ||
- name: Save root node_modules to cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: node_modules | ||
key: v5-package-node-modules-cache-${{ hashFiles('yarn.lock') }} | ||
- name: Save root ruby gems to cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor/bundle | ||
key: v5-package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }} | ||
- id: get-sha | ||
run: echo "::set-output name=sha::$(git rev-parse HEAD)" | ||
- name: Install Node modules with Yarn for renderer package | ||
run: | | ||
yarn install --no-progress --no-emoji | ||
yarn run eslint -v | ||
sudo yarn global add yalc | ||
- name: yalc publish for react-on-rails | ||
run: yalc publish | ||
- name: Install Ruby Gems for package | ||
run: bundle lock --add-platform 'x86_64-linux' && bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 | ||
- name: Ensure minimum required Chrome version | ||
run: | | ||
echo -e "Already installed $(google-chrome --version)\n" | ||
MINIMUM_REQUIRED_CHROME_VERSION=75 | ||
INSTALLED_CHROME_MAJOR_VERSION="$(google-chrome --version | tr ' .' '\t' | cut -f3)" | ||
if [[ $INSTALLED_CHROME_MAJOR_VERSION < $MINIMUM_REQUIRED_CHROME_VERSION ]]; then | ||
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | ||
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | ||
sudo apt-get update | ||
sudo apt-get install google-chrome-stable | ||
echo -e "\nInstalled $(google-chrome --version)" | ||
fi | ||
- name: Increase the amount of inotify watchers | ||
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | ||
- name: Main CI | ||
if: steps.changed-files.outputs.any_changed == 'true' | ||
run: bundle exec rake run_rspec:examples | ||
- name: Store test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: main-rspec | ||
path: ~/rspec |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why make this a dependency? it is needed for tests only?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. My mistake.