Skip to content

Commit

Permalink
node18
Browse files Browse the repository at this point in the history
  • Loading branch information
flimzy committed Jul 22, 2024
1 parent 7e68637 commit 936d6f4
Showing 1 changed file with 21 additions and 11 deletions.
32 changes: 21 additions & 11 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,35 @@ env:
COUCHDB_PASSWORD: abc123

jobs:
test:
strategy:
matrix:
go-version: [1.22] # TODO: Add 1.23rc2
name: test
container-job:
runs-on: ubuntu-latest
container:
image: node:18-bullseye
services:
couchdb:
image: couchdb:2.2.0
env:
COUCHDB_USER: admin
COUCHDB_PASSWORD: abc123
image: couchdb:2.2.0
options: >-
--health-cmd "curl -sSf http://localhost:5984/_up"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5984:5984
test:
strategy:
matrix:
go-version: [1.22] # TODO: Add 1.23rc2
name: test
runs-on: ubuntu-latest
# services:
# couchdb:
# env:
# COUCHDB_USER: admin
# COUCHDB_PASSWORD: abc123
# image: couchdb:2.2.0
# options: >-
# --health-cmd "curl -sSf http://localhost:5984/_up"
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
Expand Down

0 comments on commit 936d6f4

Please sign in to comment.