chore(deps-dev): bump fast-uri from 3.1.3 to 3.1.4 #24
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: CI | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| branches: [master, develop] | |
| jobs: | |
| build-test: | |
| name: Lint, build & test (Angular 18) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Node version is pinned via .nvmrc (v22.22.3). The matrix is kept | |
| # so additional versions can be added without restructuring the job. | |
| node-version: ['22.22.3'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Build library | |
| run: npm run build | |
| - name: Test | |
| run: npm test -- --browsers=ChromeHeadlessNoSandbox |