Skip to content

chore(deps): bump vite and @angular-devkit/build-angular #46

chore(deps): bump vite and @angular-devkit/build-angular

chore(deps): bump vite and @angular-devkit/build-angular #46

Workflow file for this run

name: Build & Test on PR
on:
pull_request:
branches: [ "master" ]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
env:
CYPRESS_INSTALL_BINARY: 0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Test
run: npm run test
- name: Build
run: npm run build:prod