Skip to content

chore(deps): bump defu from 6.1.4 to 6.1.6 in the npm_and_yarn group across 1 directory #1856

chore(deps): bump defu from 6.1.4 to 6.1.6 in the npm_and_yarn group across 1 directory

chore(deps): bump defu from 6.1.4 to 6.1.6 in the npm_and_yarn group across 1 directory #1856

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test on Node
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
cache: 'npm'
node-version: 20
- name: Install Node dependencies
run: npm ci
- run: npm run lint
- run: npm run build
- name: Test coverage
run: npm test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6.0.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}