replace calendar library #11515
Workflow file for this run
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: rspec | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "doc/**" | |
| - "**/*.md" | |
| pull_request: | |
| branches: | |
| - main | |
| - rfg-event-2025 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| rspec: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| env: | |
| RAILS_ENV: test | |
| TEST_MAX_DURATION: 60 | |
| services: | |
| db: | |
| image: postgres:14.8 | |
| env: | |
| POSTGRES_PASSWORD: password | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Set up JS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: "npm" | |
| - run: npm ci | |
| - name: Install PostgreSQL client | |
| run: | | |
| sudo apt-get -yqq install libpq-dev | |
| - name: Build App | |
| env: | |
| POSTGRES_HOST: localhost | |
| DATABASE_HOST: localhost | |
| POSTGRES_USER: postgres | |
| CASA_DATABASE_PASSWORD: password | |
| POSTGRES_PASSWORD: password | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| POSTGRES_PORT: 5432 | |
| run: | | |
| bundle exec rake db:create | |
| bundle exec rake db:schema:load | |
| bundle exec rails assets:precompile | |
| - name: Run rspec | |
| env: | |
| DATABASE_HOST: localhost | |
| POSTGRES_USER: postgres | |
| CASA_DATABASE_PASSWORD: password | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| RUN_SIMPLECOV: true | |
| run: | | |
| RUBYOPT='-W:no-deprecated -W:no-experimental' bundle exec rspec | |
| - uses: qltysh/qlty-action/coverage@v2 | |
| with: | |
| token: ${{ secrets.QLTY_COVERAGE_TOKEN }} | |
| files: coverage/.resultset.json | |
| - name: Archive selenium screenshots | |
| if: ${{ failure() }} | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: selenium-screenshots | |
| path: | | |
| ${{ github.workspace }}/tmp/capybara/*.png | |
| ${{ github.workspace }}/tmp/capybara/*.html |