Skip to content

Vite instead of Webpacker (#2) #15

Vite instead of Webpacker (#2)

Vite instead of Webpacker (#2) #15

Workflow file for this run

name: Email Stylist Tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: ["2.7"]
experimental: [false]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Bundler cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ruby }}-gems-
- name: Setup gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4
- name: Tests
run: bundle exec rspec -f d
- name: Rubocop
run: bundle exec rubocop