8000 (github actions) Run end-to-end tests on dummy Java files · zendesk/googlejavaformat-action@37fe2e5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 37fe2e5

Browse files
committed
(github actions) Run end-to-end tests on dummy Java files
1 parent aa828f6 commit 37fe2e5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
npm install
1616
npm test
1717
18-
tests-with-token:
18+
e2e-tests-with-token:
1919
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == 'axel-op'
2020
strategy:
2121
fail-fast: false
@@ -35,12 +35,14 @@ jobs:
3535
run: |
3636
npm install
3737
npx tsc
38+
- name: Create dummy Java files
39+
run: touch Main.java
3840
- uses: ./
3941
with:
4042
skip-commit: true
4143
github-token: ${{ secrets.GITHUB_TOKEN }}
4244

43-
tests-without-token:
45+
e2e-tests-without-token:
4446
strategy:
4547
fail-fast: false
4648
matrix:
@@ -59,6 +61,8 @@ jobs:
5961
run: |
6062
npm install
6163
npx tsc
64+
- name: Create dummy Java files
65+
run: touch Main.java
6266
- uses: ./
6367
continue-on-error: ${{ matrix.os == 'macos-latest' }}
6468
with:

0 commit comments

Comments
 (0)
0