Skip to content

chore(deps-dev): bump @testing-library/user-event from 14.6.1 to 14.6.3 #253

chore(deps-dev): bump @testing-library/user-event from 14.6.1 to 14.6.3

chore(deps-dev): bump @testing-library/user-event from 14.6.1 to 14.6.3 #253

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 24
- run: npm i
- run: npm run ci
- run: npm test
- name: Upload coverage
uses: actions/upload-artifact@v6
with:
name: code_coverage
path: ./coverage
- name: Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}