Skip to content
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

Split test tasks in GH Action #1562

Merged
merged 1 commit into from
Nov 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ jobs:
ruby-version: ${{ matrix.version }}
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v2-beta
uses: actions/setup-node@v3
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(latest release)

with:
node-version: '12'
- name: Install Dependencies
run: |
yarn
- name: Run Tests
run: |
yarn test
bundle exec rake test
- name: Install Yarn Dependencies
run: yarn
- name: Run Yarn Tests
run: yarn test
- name: Run Ruby Tests
run: bundle exec rake test