Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the client-dependencies group in /src/Client with 4 updates #52

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/build-client-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Angular Client Docker CI

on:
pull_request:
branches: ["*"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "*"

- name: Docker Build
run: |
cd src/Client
docker build --build-arg PROFILE=prod -t ${{ secrets.DOCKER_USERNAME }}/cbc-app .
4 changes: 2 additions & 2 deletions .github/workflows/build-client.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Angular CI
name: Angular Client CI

on:
pull_request:
Expand All @@ -21,7 +21,7 @@ jobs:
cd src/Client
npm install

- name: Build
- name: Angular Build
run: |
cd src/Client
npm run build
22 changes: 22 additions & 0 deletions .github/workflows/build-server-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ASP.NET Core Docker CI

on:
pull_request:
branches: ["*"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x" # specify your .NET Core version here

- name: Docker Build
run: |
cd src/Server
docker build -t ${{ secrets.DOCKER_USERNAME }}/cbc-api .
2 changes: 1 addition & 1 deletion .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ASP.NET Core CI

on:
pull_request:
branches: [main]
branches: ["*"]

jobs:
build:
Expand Down
217 changes: 214 additions & 3 deletions src/Client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/Client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
"typescript": "^5.2.2"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "17.0.3",
"@nx/nx-darwin-x64": "17.0.3",
"@nx/nx-linux-x64-gnu": "17.0.3",
"@nx/nx-win32-x64-msvc": "17.0.3"
"@nx/nx-darwin-arm64": "17.2.8",
"@nx/nx-darwin-x64": "17.2.8",
"@nx/nx-linux-x64-gnu": "17.2.8",
"@nx/nx-win32-x64-msvc": "17.2.8"
}
}