Skip to content

fix(project): add package-lock.json into Git; add node and npm versio… #33

fix(project): add package-lock.json into Git; add node and npm versio…

fix(project): add package-lock.json into Git; add node and npm versio… #33

Workflow file for this run

name: Run formatter on PR
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run formatter
run: npm run format