Skip to content

Bump puma from 5.6.4 to 6.4.2 #230

Bump puma from 5.6.4 to 6.4.2

Bump puma from 5.6.4 to 6.4.2 #230

Workflow file for this run

name: Test Workflow
on:
pull_request:
push:
branches:
- main
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
RACK_ENV: test
DATABASE_URL: "postgresql://postgres@127.0.0.1/disclosure-checker-test"
EXTERNAL_URL: mocked_in_tests
DEV_TOOLS_ENABLED: "1"
services:
postgres:
image: postgres:10.8-alpine
env:
POSTGRES_DB: disclosure-checker-test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 14.17.5
- name: Find yarn cache location
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: JS package cache
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install packages
run: |
yarn install --pure-lockfile
- name: Setup test database
run: bin/rails db:prepare
- name: Run linters and tests
run: bundle exec rake
call-build-and-deploy:
if: ${{ github.ref == 'refs/heads/main' }}
needs: test
uses: ./.github/workflows/deploy.yml
secrets: inherit