Skip to content

chore(deps): bump actions/setup-node from 3 to 4 #144

chore(deps): bump actions/setup-node from 3 to 4

chore(deps): bump actions/setup-node from 3 to 4 #144

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: "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"