Skip to content

build(deps-dev): bump @ui5/cli from 4.0.3 to 4.0.4 in /demo #214

build(deps-dev): bump @ui5/cli from 4.0.3 to 4.0.4 in /demo

build(deps-dev): bump @ui5/cli from 4.0.3 to 4.0.4 in /demo #214

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-application:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install the Dependencies
run: npm ci
working-directory: ./demo
- name: Run ESLint Checks
run: npm run lint
working-directory: ./demo
- name: Test the Application
run: npm run test
working-directory: ./demo/RootComponent
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./demo/RootComponent/coverage/lcov/lcov.info"
base-path: "./demo/RootComponent"