Skip to content

test(signup): add controller test for user creation #145

test(signup): add controller test for user creation

test(signup): add controller test for user creation #145

# name: Running Lint and tests
# on:
# push:
# branches: ["dev", "main"]
# jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [18.x]
# steps:
# - name: Copy repository
# uses: actions/checkout@v4
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# - name: Install dependencies
# run: npm install
# - name: Lint code
# run: npx lint-staged
# - name: Run tests
# run: npm run test:ci