Skip to content

chore(deps-dev): bump @babel/preset-react from 7.29.7 to 8.0.1 #207

chore(deps-dev): bump @babel/preset-react from 7.29.7 to 8.0.1

chore(deps-dev): bump @babel/preset-react from 7.29.7 to 8.0.1 #207

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: [ master ]
pull_request:
branches: [ master ]
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 }}