Skip to content

Commit

Permalink
[ACS-8660] Fix daily cron e2e (#4077)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKinas authored Sep 2, 2024
1 parent 14b0173 commit 4cacc38
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ env:

jobs:
lint:
if: ${{ github.event_name == 'pull_request' }}
name: 'lint'
runs-on: ubuntu-latest
steps:
Expand All @@ -43,7 +42,13 @@ jobs:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run affected:lint -- --base=origin/develop

- name: lint affected
if: ${{ github.event_name == 'pull_request' }}
run: npm run affected:lint -- --base=origin/develop
- name: lint all
if: ${{ github.event_name != 'pull_request' }}
run: npx nx run-many --target=lint
- run: npm run stylelint

build:
Expand Down

0 comments on commit 4cacc38

Please sign in to comment.