Skip to content

Updating the package-lock file. #3

Updating the package-lock file.

Updating the package-lock file. #3

Workflow file for this run

name: Verification
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Check formatting
run: npm run format:check
- name: Lint code
run: npm run lint
- name: Run tests
run: npm run test