Skip to content

Commit

Permalink
feat: Updating psql installation process, node version
Browse files Browse the repository at this point in the history
  • Loading branch information
harazdovskiy committed Aug 27, 2024
1 parent bbfe694 commit a190fc8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2.1
parameters:
node_version:
type: string
default: '16.17.0'
default: '18.12.0'

commands:
install_deps:
Expand All @@ -17,7 +17,12 @@ commands:
cache-only-lockfile: true
app-dir: ~/repo
override-ci-command: yarn install --pure-lockfile --no-progress
- run: sudo apt update -q && sudo apt install postgresql-12
- run: |
sudo apt update -q
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-12
jobs:
build:
Expand Down

0 comments on commit a190fc8

Please sign in to comment.