build: In-range update of npm dependencies #358
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test-application: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v5 | |
| 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 |