Skip to content

build(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 #2792

build(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0

build(deps): bump codecov/codecov-action from 4.3.1 to 4.4.0 #2792

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@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Use Node.js 20.x
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
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@6d798873df2b1b8e5846dba6fb86631229fbcb17 # v4.4.0
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@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: ui-toolkit-react-unit
path: ui-toolkit-react-unit.xml