Skip to content

chore(deps-dev): bump @angular/language-service from 18.0.1 to 18.2.10 in /ui #313

chore(deps-dev): bump @angular/language-service from 18.0.1 to 18.2.10 in /ui

chore(deps-dev): bump @angular/language-service from 18.0.1 to 18.2.10 in /ui #313

Workflow file for this run

name: Client
on:
push:
paths-ignore:
- "docs/**"
- "api/**"
branches:
- master
- release/*
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: "14"
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies & Build Docker Image
run: |
cd ./ui
npm install
npm run build
docker build -t hantsy/angular-spring-reactive-sample-client .
# - name: Login to DockerHub Registry
# run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
# - name: Push Docker Image
# run: docker push hantsy/angular-spring-reactive-sample-client