Remove deprecation warning #2306
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: | |
branches: ["**"] | |
jobs: | |
rails: | |
name: Rails | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:13.5 | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/manage_vaccinations_test | |
RAILS_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .tool-versions | |
bundler-cache: true | |
- name: Get Node.js version | |
id: asdf | |
run: echo "::set-output name=VERSION::$(grep nodejs .tool-versions | awk '{print $2}')" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.asdf.outputs.VERSION }} | |
cache: "yarn" | |
- name: Setup database | |
run: bin/rails db:test:prepare | |
- name: Precompile assets | |
run: bin/rails assets:precompile | |
- name: Run rspec | |
run: bundle exec rspec spec | |
jest: | |
name: Jest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Node.js version | |
id: asdf | |
run: echo "::set-output name=VERSION::$(grep nodejs .tool-versions | awk '{print $2}')" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.asdf.outputs.VERSION }} | |
cache: "yarn" | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
playwright: | |
timeout-minutes: 60 | |
name: Playwright | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:13.5 | |
env: | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
env: | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/manage_vaccinations_test | |
RAILS_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .tool-versions | |
bundler-cache: true | |
- name: Get Node.js version | |
id: asdf | |
run: echo "::set-output name=VERSION::$(grep nodejs .tool-versions | awk '{print $2}')" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.asdf.outputs.VERSION }} | |
cache: "yarn" | |
- run: bundle | |
- run: yarn install --frozen-lockfile | |
- run: bin/rails db:prepare | |
- name: Get installed Playwright version | |
id: playwright-version | |
run: echo "PLAYWRIGHT_VERSION=$(yarn list --pattern '@playwright/test' --depth 0 -s | cut -d @ -f 3)" >> $GITHUB_ENV | |
- name: Cache playwright binaries | |
uses: actions/cache@v3 | |
id: playwright-cache | |
with: | |
path: | | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }} | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
- name: Precompile assets | |
run: bin/rails assets:precompile | |
- name: Run Playwright tests | |
run: yarn test:e2e |