Skip to content

Commit

Permalink
CI: Check Assets Precompile
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Kostiuk <[email protected]>
  • Loading branch information
kostyanf14 committed Sep 10, 2023
1 parent 1ebdd3e commit 3b1763b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/assets-precompile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Assets Precompile

on:
pull_request:
branches: [main]

jobs:
assets:
env:
RAILS_ENV: test

name: Assets Precompile
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Ruby 3.1.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true

- name: Check ability to precompile current assets
run: bundle exec rails assets:precompile

0 comments on commit 3b1763b

Please sign in to comment.