Skip to content

build(deps-dev): bump typescript-eslint from 8.68.0 to 8.69.0 (#2590) #6528

build(deps-dev): bump typescript-eslint from 8.68.0 to 8.69.0 (#2590)

build(deps-dev): bump typescript-eslint from 8.68.0 to 8.69.0 (#2590) #6528

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
permissions:
contents: read
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Harden Runner
uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1
with:
egress-policy: audit
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Use Node.js 24.x
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24.x
- name: Run NPM CI
run: npm install
- name: Run Lint
run: npm run lint
- name: Run Prettier Check
run: npm run ci-prettify
- name: Install Playwright Chromium
run: npx playwright install --with-deps chromium
- name: Run Test
run: npm run test-ci
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
name: Upload Coverage Results
with:
directory: ./coverage/ui-toolkit-angular
- name: Run Build
run: npm run build
- name: Upload Test Results
# Run even when Test fails — that is exactly when the junit report matters.
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: ui-toolkit-angular-unit
path: '**/ui-toolkit-angular.xml'