Skip to content

Migration to a Rails-based setup #40

Migration to a Rails-based setup

Migration to a Rails-based setup #40

Workflow file for this run

name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
js_tests:
name: 'Node.js ${{ matrix.node-version }} tests'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
rspec_tests:
name: 'Ruby ${{ matrix.ruby-version }} tests'
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.3.3]
steps:
- uses: actions/checkout@v4
- name: Use Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- run: gem install bundler
- run: bundle install
- run: bundle exec rspec