Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.0 #5775

build(deps-dev): bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.0 #5775

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@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js 24.x
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.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: Run Test
run: npm run test-ci
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
name: Upload Coverage Results
with:
directory: ./coverage
- name: Run Build
run: npm run build
- name: Upload Karma Results
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: ui-toolkit-angular-unit
path: '**/ui-toolkit-angular.xml'