Fix issue with upgrading gems breaking Opal compilation in Rails applications due to incorrect Sprockets caching #41
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
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ 'ubuntu-latest' ] | |
ruby: [ "3.0", "2.7", "2.6", "2.5" ] | |
opal: [ "1.0.3", "1.1.0" ] | |
runs-on: ${{ matrix.os }} | |
env: | |
OPAL_VERSION: ${{ matrix.opal }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Setup project | |
run: bin/setup | |
- name: Run test | |
run: bin/rake |