Skip to content

Support 3 level nesting #39

Support 3 level nesting

Support 3 level nesting #39

Workflow file for this run

name: Tests Rails 6
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
working-directory: ./test/VanillaNestedTests
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
working-directory: test/VanillaNestedTests
bundler-cache: true
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: YARN
uses: bahmutov/npm-install@v1
with:
working-directory: test/VanillaNestedTests
- name: Unit tests
run: bundle exec rails test
- name: System tests
run: bundle exec rails test:system