Skip to content

chore(deps-dev): bump webmock from 3.24.0 to 3.25.0 #1778

chore(deps-dev): bump webmock from 3.24.0 to 3.25.0

chore(deps-dev): bump webmock from 3.24.0 to 3.25.0 #1778

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: password
ports:
- 5432/tcp
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
cache: "yarn"
node-version-file: ".tool-versions"
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Test
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:[email protected]:${{ job.services.postgres.ports[5432] }}/support_act_test
# mirror .env
SENDER: [email protected]
LAST_FM_API_KEY: testing_key
LAST_FM_API_SECRET: testing_secret
run: |
./bin/bootstrap
./bin/rake
./bin/bundle exec rubocop