Merge pull request #13397 from colinux/emails-tiptap #131
This file contains hidden or 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: Warm bundle cache | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| paths: | |
| - Gemfile.lock | |
| - .ruby-version | |
| - package.json | |
| - vite.config.ts | |
| - app/javascript/** | |
| - app/assets/** | |
| - patches/** | |
| jobs: | |
| warm-cache: | |
| runs-on: ubuntu-22.04 | |
| services: | |
| postgres: | |
| image: postgis/postgis:17-3.5 | |
| env: | |
| POSTGRES_USER: tps_test | |
| POSTGRES_DB: tps_test | |
| POSTGRES_PASSWORD: tps_test | |
| ports: ["5432:5432"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Ruby and bundle cache | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Setup assets cache | |
| uses: ./.github/actions/ci-setup-assets |