Skip to content

feat: authentication and login #37

feat: authentication and login

feat: authentication and login #37

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- "**"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Install dependencies
working-directory: ./brints-estate-api
run: yarn install
- name: Prettier Format
working-directory: ./brints-estate-api
run: yarn format
- name: Run tests
working-directory: ./brints-estate-api
run: yarn test --passWithNoTests
- name: Build
working-directory: ./brints-estate-api
run: yarn build