Bump nanoid from 3.3.7 to 3.3.8 #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RSpec CI | |
on: | |
# allow running action manually | |
workflow_dispatch: | |
# trigger on push to master branch | |
pull_request: | |
branches: | |
- main | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
ports: | |
- '5432:5432' | |
env: | |
POSTGRES_DB: rails_test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: 'postgres://postgres:password@localhost:5432/rails_test' | |
permissions: | |
packages: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 | |
with: | |
ruby-version: '3.2.1' # Not needed with a .ruby-version file | |
- run: bundle install | |
- run: bundle exec rails assets:precompile | |
- run: bundle exec rails db:create | |
- run: bundle exec rails db:migrate | |
- run: bundle exec rspec |