Skip to content

Add different way to define relations on models #102

Add different way to define relations on models

Add different way to define relations on models #102

Workflow file for this run

name: Continuous Integration
on: push
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install requirements
run: |
yarn install --frozen-lockfile
- name: Run tests
run: |
yarn ci
- name: Upload coverage report
uses: codecov/codecov-action@v1