Skip to content

Bump shakacode/react_on_rails/.github/workflows/demo-fleet-smoke.yml from 613c6c2a251a782328b26d68e7f23daa9b677497 to c4f798063f9b1047c3a19022174a6cd8866955d4 #1261

Bump shakacode/react_on_rails/.github/workflows/demo-fleet-smoke.yml from 613c6c2a251a782328b26d68e7f23daa9b677497 to c4f798063f9b1047c3a19022174a6cd8866955d4

Bump shakacode/react_on_rails/.github/workflows/demo-fleet-smoke.yml from 613c6c2a251a782328b26d68e7f23daa9b677497 to c4f798063f9b1047c3a19022174a6cd8866955d4 #1261

Workflow file for this run

name: "JS CI"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22.x]
ruby: [3.4.6]
env:
RAILS_ENV: test
NODE_ENV: test
USE_COVERALLS: true
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: |
bundle install
yarn install --frozen-lockfile --non-interactive --prefer-offline
- name: Build i18n libraries
run: bundle exec rake react_on_rails:locale
- name: Generate React on Rails packs
run: bundle exec rails react_on_rails:generate_packs
- name: Run js tests
run: bundle exec rake ci:js