Skip to content

fix: changed names from validation schema to env schema #24

fix: changed names from validation schema to env schema

fix: changed names from validation schema to env schema #24

Workflow file for this run

name: Lint
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
cache-dependency-path: './yarn.lock'
- name: Install dependencies
run: yarn install
- name: Run linters
run: yarn lint && yarn format