Bump cssbundling-rails from 1.4.1 to 1.4.3 #846
Workflow file for this run
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
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- run: bundle install --jobs 4 --retry 3 --path vendor/bundle | |
- run: bundle exec rake db:migrate RAILS_ENV=test | |
- run: bundle exec rake spec |