Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Fix: изменение добавление обложки в проект #299

Fix: изменение добавление обложки в проект

Fix: изменение добавление обложки в проект #299

Workflow file for this run

name: Test on Pull Request
on:
pull_request:
types:
- opened
- synchronize
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn --immutable
- name: Run checks
run: yarn concurrently "yarn test" "yarn lint" --raw