We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 910636e + 98c3ee4 commit 84918beCopy full SHA for 84918be
.github/workflows/main.yml
@@ -10,22 +10,24 @@ jobs:
10
name: Run test
11
services:
12
postgres:
13
- image: circleci/postgres:10.6-alpine
+ image: postgres:16
14
ports: ["5432:5432"]
15
env:
16
POSTGRES_USER: postgres
17
POSTGRES_DB: dmemo_test
18
+ POSTGRES_HOST_AUTH_METHOD: trust
19
mysql:
- image: circleci/mysql:5.6
20
+ image: mysql:8.4
21
ports: ["3306:3306"]
22
23
MYSQL_DATABASE: dmemo_test
24
+ MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
25
26
PG_HOST: localhost
27
RAILS_ENV: test
28
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v2
29
+ - uses: actions/checkout@v4
30
+ - uses: actions/setup-node@v4
31
with:
32
node-version: '20'
33
cache: 'npm'
0 commit comments