Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACS-5107] - Add 'affected' to GHA #3399

Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
686b38a
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
fa00c94
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
457d89c
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
6476ed6
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
4da7e8f
Revert "[ACS-5605] - Add 'affected' to GHA"
dominikiwanekhyland Aug 21, 2023
e885398
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
449a22b
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
b1033dc
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
3833b31
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
c059e0d
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
c27db5c
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
fd7e274
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
a165848
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
a98dd3f
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 21, 2023
91aeab9
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
0b9ed29
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
9576824
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
cddc99e
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
32fc931
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
ceb6ccb
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
10d3735
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
5442d0b
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
d623fb1
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
33e5fe3
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
5426cd7
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
46d8658
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
4c2a1f1
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
329e9cd
[ACS-5605] - Add 'affected' to GHA
dominikiwanekhyland Aug 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
AleksanderSklorz marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
fetch-depth: 0

- name: node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run affected:lint -- --base=origin/develop
- run: npm run stylelint

build:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
fetch-depth: 0

- name: node
uses: actions/setup-node@v3
Expand All @@ -99,7 +99,7 @@ jobs:
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- run: npm test ${{ matrix.unit-tests.name }} -- --browsers=ChromeHeadless --watch=false $TEST_OPTS
- run: npm run affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop

e2es:
needs: [lint, build, unit-tests]
Expand Down