mirror of
https://github.com/vcscsvcscs/GenerationsHeritage.git
synced 2025-08-13 22:39:06 +02:00
Attempt fixing ci
This commit is contained in:
0
.github/workflows/CI/svelte_build.yml
vendored
0
.github/workflows/CI/svelte_build.yml
vendored
0
.github/workflows/CI/svelte_lint.yml
vendored
0
.github/workflows/CI/svelte_lint.yml
vendored
6
.github/workflows/auth-service-ci.yml
vendored
6
.github/workflows/auth-service-ci.yml
vendored
@@ -6,16 +6,16 @@ on:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./.github/workflows/CI/go_lint.yml
|
||||
uses: ./.github/workflows/go_lint.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./.github/workflows/CI/go_build.yml
|
||||
uses: ./.github/workflows/go_build.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
||||
test:
|
||||
needs: build
|
||||
uses: ./.github/workflows/CI/go_test.yml
|
||||
uses: ./.github/workflows/go_test.yml
|
||||
with:
|
||||
working-directory: 'auth-service'
|
6
.github/workflows/backend-ci.yml
vendored
6
.github/workflows/backend-ci.yml
vendored
@@ -6,16 +6,16 @@ on:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./CI/go_lint.yml
|
||||
uses: ./go_lint.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./CI/go_build.yml
|
||||
uses: ./go_build.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
test:
|
||||
needs: build
|
||||
uses: ./CI/go_test.yml
|
||||
uses: ./go_test.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
4
.github/workflows/frontend-ci.yml
vendored
4
.github/workflows/frontend-ci.yml
vendored
@@ -6,11 +6,11 @@ on:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
uses: ./CI/go_lint.yml
|
||||
uses: ./go_lint.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
build:
|
||||
needs: lint
|
||||
uses: ./CI/go_build.yml
|
||||
uses: ./go_build.yml
|
||||
with:
|
||||
working-directory: 'backend'
|
||||
|
13
.github/workflows/svelte_build.yml
vendored
Normal file
13
.github/workflows/svelte_build.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
working-directory:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
13
.github/workflows/svelte_lint.yml
vendored
Normal file
13
.github/workflows/svelte_lint.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
working-directory:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
Reference in New Issue
Block a user