chore(deps): bump the client-dependencies group in /src/Client with 35 updates #76
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 Client 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: Install dependencies | |
run: | | |
cd src/Client | |
npm install | |
- name: Angular Build | |
run: | | |
cd src/Client | |
npm run build |