Skip to content

feat(deps): adds support for Angular 19 and migrates the component to a fully standalone structure #98

feat(deps): adds support for Angular 19 and migrates the component to a fully standalone structure

feat(deps): adds support for Angular 19 and migrates the component to a fully standalone structure #98

Workflow file for this run

on: pull_request
name: Lint npm packages on pull request
jobs:
npmLint:
name: npm lint
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
uses: actions/checkout@v2
- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v3
env:
cache-name: ${{ github.event.repository.name }}
with:
# caching node_modules
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Run npm install
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: npm ci
- name: Install Lerna
run: npm i -g [email protected]
- name: Bootstrap Monorepo
run: lerna bootstrap
- name: Run test
run: lerna run test