Skip to content

Add session table component #6460

Add session table component

Add session table component #6460

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: ["main"]
jobs:
rails:
name: Rails
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13.5
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/manage_vaccinations_test
RAILS_ENV: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: yarn
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup database
run: bin/rails db:test:prepare
- name: Precompile assets
run: bin/rails assets:precompile
- name: Run rspec
run: bundle exec rspec spec
jest:
name: Jest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: yarn
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn test