Skip to content

Commit

Permalink
chore: remove DB from test setup, upgrade uuid library
Browse files Browse the repository at this point in the history
  • Loading branch information
grossvogel committed May 15, 2024
1 parent 85d87e4 commit a542a2d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,6 @@ on:
types: [published]
jobs:
tests:
services:
db:
image: postgres:15
ports: ["5432:5432"]
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ubuntu-22.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
env:
Expand Down
2 changes: 1 addition & 1 deletion test/js/keyed-functions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const uuid = require('uuid/v4')
const { v4: uuid } = require('uuid');

function hello(name) {
return `Hello, ${name}!`
Expand Down
2 changes: 1 addition & 1 deletion test/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"uuid": "^3.3.2"
"uuid": "^9.0.1"
}
}

0 comments on commit a542a2d

Please sign in to comment.