Skip to content

chore: update Angular to v18.2.5 #59

chore: update Angular to v18.2.5

chore: update Angular to v18.2.5 #59

Workflow file for this run

name: build-test
on:
pull_request:
branches: [ "main" ]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '22' ]
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 install
- name: Run tests
run: npm run test
# - name: Upload Codecov
# if: success()
# uses: codecov/codecov-action@v3
# with:
# files: ./coverage/lcov.info
# flags: unittests