File tree Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Original file line number Diff line number Diff line change 8
8
- main
9
9
10
10
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
36
36
37
37
check_if_version_upgraded :
38
38
name : Check if version upgrade
39
39
if : github.event_name == 'push'
40
40
runs-on : ubuntu-latest
41
- needs : validations
41
+ # needs: validations
42
42
outputs :
43
43
is_upgraded_version : ${{ steps.check_version.outputs.is_upgraded_version }}
44
44
to_version : ${{ steps.check_version.outputs.to_version }}
You can’t perform that action at this time.
0 commit comments