chore(deps): update angular-cli monorepo to v18.2.5 #3858
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Angular Ci | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
REGISTRY_NAME: github.com | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: | | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
.angular | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install yarn | |
run: npm install -g yarn | |
- name: Install package | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: yarn ng build --configuration production | |
- name: Build with esbuild | |
run: yarn ng run hoteler-web:esbuild || true | |
- name: Unit Test | |
run: yarn ng test --browsers=ChromeHeadless --watch=false --code-coverage | |
build-docker: | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- uses: actions/checkout@master | |
# Container build | |
- name: Build docker | |
id: build-docker | |
run: | | |
docker build . -t ${{ env.REGISTRY_NAME }}/damingerdai/hoteler-web:${{ github.sha }} -f Dockerfile | |
- name: Image digest for docker | |
run: echo ${{ steps.build-docker.outputs.digest }} |