Bump rails-html-sanitizer from 1.6.0 to 1.6.1 #1292
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: Cypress Tests | |
on: push | |
jobs: | |
cypress: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run migrations | |
run: bin/rails db:migrate RAILS_ENV=development | |
- name: Install foreman gem | |
run: gem install foreman | |
- name: Install yarn and build | |
run: | | |
npm install -g yarn | |
yarn install | |
- name: Precompile assets | |
run: bin/rails app:assets:precompile | |
- name: Start server and run tests | |
run: foreman start -f Procfile.dev |