Skip to content

chore(client): yarn config #19

chore(client): yarn config

chore(client): yarn config #19

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install node.js v16
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn --immutable
- name: Build API
run: yarn build
- name: ESLint
run: yarn lint
- name: Docker
run: docker compose up -d