Skip to content

chore(deps-dev): Bump the development-dependencies group in /app with 15 updates #42

chore(deps-dev): Bump the development-dependencies group in /app with 15 updates

chore(deps-dev): Bump the development-dependencies group in /app with 15 updates #42

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: CI
jobs:
test:
name: Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
timeout-minutes: 15
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: "app/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Run lint checks
run: npm run lint
- name: Run type checks
run: npm run type-check
- name: Run unit tests
run: npm run test:unit