Skip to content

feat: Restructure project and integrate PostgreSQL with Docker #34

feat: Restructure project and integrate PostgreSQL with Docker

feat: Restructure project and integrate PostgreSQL with Docker #34

Workflow file for this run

name: CI Development
on:
push:
branches: [ development ]
pull_request:
branches: [ development ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.17.0'
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Build project
run: yarn build
- name: Run tests
run: yarn test