Skip to content

chore(deps): bump defu from 6.1.4 to 6.1.7 #316

chore(deps): bump defu from 6.1.4 to 6.1.7

chore(deps): bump defu from 6.1.4 to 6.1.7 #316

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- develop
jobs:
linter_eslint:
name: linter:eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run lint
tests_units:
name: tests:units
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run test:cov
build_app:
name: build:app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run build