Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cypress version issues #2405

Merged
merged 1 commit into from
May 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/cypress-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

services:
postgres:
image: postgres:12 # postgres image for test database.
image: postgres:13 # postgres image for test database.
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -23,8 +23,8 @@ jobs:

strategy:
matrix: # build matrix for the job
elixir: [1.14.2]
otp: [25.1.2]
elixir: [1.14.5]
otp: [25.3.2]
node-version: [16.17.0]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
echo install mix dependencies if not Cached
mix local.rebar --force
mix local.hex --force
mix hex.organization auth oban --key ${{ secrets.OBAN_PRO_KEY }}
mix hex.repo add oban https://getoban.pro/repo --fetch-public-key ${{ secrets.OBAN_PUBLIC_KEY }} --auth-key ${{ secrets.OBAN_PRO_KEY }}
mix deps.get
echo start mix setup
echo done. start installing inotify-tools
Expand Down