test(signup): add controller test for user creation #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |