Skip to content

Commit

Permalink
tabs indentations fixe
Browse files Browse the repository at this point in the history
  • Loading branch information
kloV148 committed Oct 22, 2023
1 parent 0dac383 commit edc839d
Showing 1 changed file with 45 additions and 46 deletions.
91 changes: 45 additions & 46 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,52 +1,51 @@
name: Run tests

on:
pull_request:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
test:
runs-on: ubuntu-22.04
services:
postgres:
image: postgres
env:
POSTGRES_USER: codex
POSTGRES_DB: notes
POSTGRES_PASSWORD: postgres
ports:
- 127.0.0.1:5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
volumes:
- ./database:/var/lib/postgresql/data

steps:

- name: Wait for PostgreSQL
uses: jakejarvis/wait-action@master
with:
time: '20s'

- name: Set permissions for database directory
run: sudo chmod -R 777 database

- name: Checkout Repository
uses: actions/checkout@v3


- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test
tests:
runs-on: ubuntu-22.04

services:
postgres:
image: postgres
env:
POSTGRES_USER: codex
POSTGRES_DB: notes
POSTGRES_PASSWORD: postgres
ports:
- 127.0.0.1:5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
volumes:
- ./database:/var/lib/postgresql/data

steps:
- name: Wait for PostgreSQL
uses: jakejarvis/wait-action@master
with:
time: '20s'

- name: Set permissions for database directory
run: sudo chmod -R 777 database

- name: Checkout Repository
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit edc839d

Please sign in to comment.