Skip to content

[Snyk] Security upgrade @nx/angular from 17.2.0-beta.0 to 17.2.0 #1027

[Snyk] Security upgrade @nx/angular from 17.2.0-beta.0 to 17.2.0

[Snyk] Security upgrade @nx/angular from 17.2.0-beta.0 to 17.2.0 #1027

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.13.0', '20']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: |
npx nx run-many --target=build --all
env:
CI: true