Skip to content

Commit 6391fb7

Browse files
committed
chore: to revert -> comment validation to speedup dev
1 parent 49086f2 commit 6391fb7

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/ci.yaml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,37 @@ on:
88
- main
99

1010
jobs:
11-
validations:
12-
runs-on: ubuntu-latest
13-
env:
14-
DATABASE_URL: postgresql://catalogi:pg_password@localhost:5432/catalogi
15-
services:
16-
postgres:
17-
image: postgres:16-alpine
18-
env:
19-
POSTGRES_USER: catalogi
20-
POSTGRES_PASSWORD: pg_password
21-
POSTGRES_DB: catalogi
22-
ports:
23-
- 5432:5432
24-
steps:
25-
- uses: actions/checkout@v4
26-
- uses: actions/setup-node@v4
27-
with:
28-
node-version: "22"
29-
- uses: bahmutov/npm-install@v1
30-
- name: Build back
31-
run: cd api && yarn build
32-
- name: Migrate db
33-
run: cd api && yarn migrate latest
34-
- name: Fullcheck
35-
run: yarn fullcheck
11+
# validations:
12+
# runs-on: ubuntu-latest
13+
# env:
14+
# DATABASE_URL: postgresql://catalogi:pg_password@localhost:5432/catalogi
15+
# services:
16+
# postgres:
17+
# image: postgres:16-alpine
18+
# env:
19+
# POSTGRES_USER: catalogi
20+
# POSTGRES_PASSWORD: pg_password
21+
# POSTGRES_DB: catalogi
22+
# ports:
23+
# - 5432:5432
24+
# steps:
25+
# - uses: actions/checkout@v4
26+
# - uses: actions/setup-node@v4
27+
# with:
28+
# node-version: "22"
29+
# - uses: bahmutov/npm-install@v1
30+
# - name: Build back
31+
# run: cd api && yarn build
32+
# - name: Migrate db
33+
# run: cd api && yarn migrate latest
34+
# - name: Fullcheck
35+
# run: yarn fullcheck
3636

3737
check_if_version_upgraded:
3838
name: Check if version upgrade
3939
if: github.event_name == 'push'
4040
runs-on: ubuntu-latest
41-
needs: validations
41+
# needs: validations
4242
outputs:
4343
is_upgraded_version: ${{ steps.check_version.outputs.is_upgraded_version }}
4444
to_version: ${{ steps.check_version.outputs.to_version }}

0 commit comments

Comments
 (0)