From 488ac9b134f40da067e5f6593a0bb5aa597c9acc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 06:32:40 +0000 Subject: [PATCH] Bump actions/setup-node from 4 to 6 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 6. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ui.yml | 96 ++++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/.github/workflows/ui.yml b/.github/workflows/ui.yml index c29ed5108..9cb9f5cc7 100644 --- a/.github/workflows/ui.yml +++ b/.github/workflows/ui.yml @@ -1,48 +1,48 @@ -name: ui - -permissions: - contents: read - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - ui: - runs-on: ubuntu-latest - defaults: - run: - working-directory: src/SJP.Schematic.Reporting/ui - steps: - - uses: actions/checkout@v7 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '26' - cache: npm - cache-dependency-path: src/SJP.Schematic.Reporting/ui/package-lock.json - - - name: Install dependencies - run: npm ci - - - name: Lint - run: npm run lint - - - name: Format check - run: npm run format:check - - - name: Build - run: npm run build - - - name: Test - run: npm run test:coverage - - - name: Coverage - uses: codecov/codecov-action@v7 - with: - token: ${{ secrets.CODECOV_TOKEN }} - flags: ui - files: src/SJP.Schematic.Reporting/ui/coverage/cobertura-coverage.xml +name: ui + +permissions: + contents: read + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + ui: + runs-on: ubuntu-latest + defaults: + run: + working-directory: src/SJP.Schematic.Reporting/ui + steps: + - uses: actions/checkout@v7 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: '26' + cache: npm + cache-dependency-path: src/SJP.Schematic.Reporting/ui/package-lock.json + + - name: Install dependencies + run: npm ci + + - name: Lint + run: npm run lint + + - name: Format check + run: npm run format:check + + - name: Build + run: npm run build + + - name: Test + run: npm run test:coverage + + - name: Coverage + uses: codecov/codecov-action@v7 + with: + token: ${{ secrets.CODECOV_TOKEN }} + flags: ui + files: src/SJP.Schematic.Reporting/ui/coverage/cobertura-coverage.xml