Skip to content

build(deps-dev): bump @typescript-eslint/parser from 6.16.0 to 6.17.0 #2212

build(deps-dev): bump @typescript-eslint/parser from 6.16.0 to 6.17.0

build(deps-dev): bump @typescript-eslint/parser from 6.16.0 to 6.17.0 #2212

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
permissions:
contents: write # for Git to git push
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@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js 20.x
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: 20.x
- name: Run NPM CI
run: npm install
- name: Run Lint
run: npm run lint
- name: Run Test
run: npm run test
- name: Run Coverage
run: npm run coverage
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
name: Upload Coverage Results
with:
directory: ./coverage/
- name: Run Build Dev
run: npm run build
- name: Run Build Externals
run: npm run build-ext
- run: mv junit.xml ui-toolkit-react-unit.xml
- name: Upload JEST Results
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: ui-toolkit-react-unit
path: ui-toolkit-react-unit.xml