Skip to content

fix: prisma provider error and yarn upgrade #192

fix: prisma provider error and yarn upgrade

fix: prisma provider error and yarn upgrade #192

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- README.md
- LICENSE
pull_request:
paths-ignore:
- README.md
- LICENSE
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js and Yarn
uses: actions/setup-node@v4
with:
registry-url: https://registry.yarnpkg.com
- name: Cache Yarn dependencies
uses: actions/cache@v4
with:
path: |
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Yarn dependencies
run: yarn install
- name: Yarn Lint
run: yarn lint
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
cache: 'pip'
- name: Install pip dependencies
run: python -m pip install --upgrade pip flake8
- name: Flake8
run: flake8 api core