Skip to content

[DEMO] ui5.yaml: Use new 'component' type #136

[DEMO] ui5.yaml: Use new 'component' type

[DEMO] ui5.yaml: Use new 'component' type #136

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@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install the Dependencies
run: npm ci
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"