Skip to content

Bump lint-staged from 15.5.0 to 16.0.0 (#67) #65

Bump lint-staged from 15.5.0 to 16.0.0 (#67)

Bump lint-staged from 15.5.0 to 16.0.0 (#67) #65

Workflow file for this run

name: Test & Quality
on:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Cache Node.js modules
uses: actions/cache@v4
id: cache
with:
path: 'node_modules'
key: node_modules_${{ hashFiles('package-lock.json') }}
restore-keys: node_modules_
- name: Install NPM dependencies
run: npm ci
- name: Build app
run: npm run build
- name: Test app
run: npm run test