Skip to content

fix: package.json & yarn.lock to reduce vulnerabilities #1579

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

fix: package.json & yarn.lock to reduce vulnerabilities #1579

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Run linter
run: npm run lint
- name: Run format
run: npm run format