Skip to content

feat(user): add soft delete and timestamps #3

feat(user): add soft delete and timestamps

feat(user): add soft delete and timestamps #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linux:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: athenna
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_ROOT_PASSWORD: root
ports:
- '5432:5432'
strategy:
matrix:
node-version:
- 21.x
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Setup database tables
run: node artisan db:fresh
- name: Run tests
run: npm run test:coverage
- name: Test code compilation
run: npm run build