Skip to content

chore(Angular): Upgrade to v15 #2144

chore(Angular): Upgrade to v15

chore(Angular): Upgrade to v15 #2144

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: Test coverage
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
with:
coverageCommand: npm run test-coverage
coverageLocations: ${{github.workspace}}/coverage/lcov.info:lcov