byDevelopment_v2.0.9 #241
This file contains hidden or 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
| # GitHub Action name | |
| name: Jest automatic testing | |
| # event trigger | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - staging | |
| - production | |
| jobs: | |
| # ID of job | |
| run-jest-tests: | |
| # job name | |
| name: Run Jest tests | |
| runs-on: ubuntu-latest | |
| env: | |
| NODE_MODE: staging | |
| SECRET_GOOGLE_API_KEY: ${{ secrets.SECRET_GOOGLE_API_KEY }} | |
| MAINTENANCE_CODE: ${{ secrets.SECRET_MAINTENANCE_CODE }} | |
| SECRET_HOME_API_KEY: ${{ secrets.SECRET_HOME_API_KEY }} | |
| SECRET_HOME_ADDRESS: ${{ secrets.SECRET_HOME_ADDRESS }} | |
| SECRET_EMAIL_RECEIVER: ${{ secrets.SECRET_EMAIL_RECEIVER }} | |
| SECRET_EMAIL_SENDER: ${{ secrets.SECRET_EMAIL_SENDER }} | |
| SECRET_EMAIL_PASS: ${{ secrets.SECRET_EMAIL_PASS }} | |
| SECRET_EMAIL_SUBJECT: ${{ secrets.SECRET_EMAIL_SUBJECT }} | |
| SECRET_PASS_POS: ${{ secrets.SECRET_PASS_POS }} | |
| SECRET_IV_POS: ${{ secrets.SECRET_IV_POS }} | |
| SECRET_AUTH_USER: ${{ secrets.SECRET_AUTH_USER }} | |
| SECRET_AUTH_ID: ${{ secrets.SECRET_AUTH_ID }} | |
| SECRET_AUTH_PASS: ${{ secrets.SECRET_AUTH_PASS }} | |
| SECRET_AUTH_ROLE: ${{ secrets.SECRET_AUTH_ROLE }} | |
| SECRET_AUTH_ISSUER: ${{ secrets.SECRET_AUTH_ISSUER }} | |
| SECRET_PUBLIC_KEY: none | |
| SECRET_PRIVATE_KEY: none | |
| SECRET_BETTERSTACK_LOGGING_KEY: ${{ secrets.SECRET_BETTERSTACK_LOGGING_KEY }} | |
| SECRET_BETTERSTACK_HOST: ${{ secrets.SECRET_BETTERSTACK_HOST }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up NodeJS | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: npm install | |
| working-directory: ./backend | |
| - name: Run Jest tests | |
| run: npm run test | |
| working-directory: ./backend | |