[MDCT-2555] Stabilize carts e2e smoke test #501
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: Pull-request | |
on: [pull_request] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pre-commit/[email protected] | |
jest-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "14" | |
- name: Prepare for Jest (frontend) | |
run: yarn install --frozen-lockfile | |
working-directory: ./services/ui-src | |
- name: Jest (frontend) | |
run: yarn test | |
working-directory: ./services/ui-src | |
jest-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "14" | |
- name: Prepare for Jest (backend) | |
run: yarn install --frozen-lockfile | |
working-directory: ./services/app-api | |
- name: Jest (backend) | |
run: yarn test | |
working-directory: ./services/app-api | |
assignAuthor: | |
if: github.event.pull_request.user.type != 'Bot' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Assign PR to Creator | |
run: gh pr edit $PRNUM --add-assignee $PR_AUTHOR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PRNUM: ${{ github.event.pull_request.number }} | |
PR_AUTHOR: ${{ github.event.pull_request.user.login }} |