Bump esbuild from 0.21.5 to 0.24.0 #3574
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: Test | |
on: [push] | |
env: | |
RAILS_ENV: test | |
jobs: | |
tests: | |
name: Run rspec and rubocop | |
runs-on: ubuntu-latest | |
env: | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
services: | |
postgres: | |
image: postgres:13.1-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: 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: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3.4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install gems | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 20 --retry 3 | |
- name: Install yarn | |
run: npm install yarn -g | |
- name: Install node.js dependencies | |
run: yarn install | |
- name: Set up test database | |
run: bin/rails db:prepare | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/test | |
- name: Report schema version | |
run: bin/rails db:version | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/test | |
- name: Compile assets | |
run: bin/rails assets:precompile | |
- name: Run rubocop | |
run: bundle exec rubocop | |
- name: Run tests | |
run: bundle exec rspec | |
env: | |
DATABASE_URL: postgres://postgres:password@localhost:5432/test |