Skip to content

fix: package.json & package-lock.json to reduce vulnerabilities #31

fix: package.json & package-lock.json to reduce vulnerabilities

fix: package.json & package-lock.json to reduce vulnerabilities #31

Workflow file for this run

name: Format Check
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Format
run: npm run prettier:check