Skip to content

fix(deps): update dependency svgo to v3 #324

fix(deps): update dependency svgo to v3

fix(deps): update dependency svgo to v3 #324

Workflow file for this run

name: Code style
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
# Install
- name: Install dependencies via yarn 📦
run: yarn install --prefer-offline --frozen-lockfile
# Run eslint 🕵️
- name: Run eslint
run: yarn lint
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
# Install
- name: Install dependencies via yarn 📦
run: yarn install --prefer-offline --frozen-lockfile
# Run prettier 🕵️
- name: Run prettier
run: npx prettier --check "*.{js,json}"