Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
fix: change yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Kutliakhmetov committed Aug 31, 2023
1 parent 1eda39a commit 4202cb6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
needs: checkout
steps:
- name: Install dependencies
run: yarn
run: cd ${{ steps.setup_workspace.outputs.workspace }} && yarn

tests:
runs-on: front
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Run tests
run: yarn test
run: cd ${{ steps.setup_workspace.outputs.workspace }} && yarn test

eslint:
runs-on: front
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Run eslint
run: yarn eslint
run: cd ${{ steps.setup_workspace.outputs.workspace }} && yarn eslint

tslint:
runs-on: front
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Run tslint
run: yarn tslint
run: cd ${{ steps.setup_workspace.outputs.workspace }} && yarn tslint

prettier:
runs-on: front
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Run prettier
run: yarn prettier
run: cd ${{ steps.setup_workspace.outputs.workspace }} && yarn prettier

protect:
runs-on: front
Expand Down

0 comments on commit 4202cb6

Please sign in to comment.