feat(sprints): created unit tests for the sprints' service and controller methods #792
Workflow file for this run
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: Lint & Test Workflow | |
on: | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
MJ_APIKEY_PUBLIC: ${{ secrets.MJ_APIKEY_PUBLIC }} | |
MJ_APIKEY_PRIVATE: ${{ secrets.MJ_APIKEY_PRIVATE }} | |
DATABASE_URL: ${{ secrets.DATABASE_URL_TEST }} | |
JWT_SECRET: jwtsecret | |
AT_SECRET: atsecret | |
RT_SECRET: rtsecret | |
DISCORD_CLIENT_ID: ${{ secrets.DISCORD_CLIENT_ID }} | |
DISCORD_CLIENT_SECRET: ${{ secrets.DISCORD_CLIENT_SECRET }} | |
DISCORD_CALLBACK_URL: /api/v1/auth/discord/redirect | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: yarn install | |
- name: Run Eslint | |
run: yarn lint | |
- name: Run unit tests | |
run: | | |
if [ ${{ github.event.pull_request.base.ref }} == "main" ]; then | |
yarn test:unit | |
fi | |
- name: Push latest schema to the test database | |
run: npx prisma db push --accept-data-loss | |
- name: Run e2e tests | |
run: | | |
if [ ${{ github.event.pull_request.base.ref }} == "main" ]; then | |
yarn test:e2e --testTimeout=300000 | |
fi |