Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: electron-userland/electron-builder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ee5f0393092a349f2476fe2a43da0f37e78c803a
Choose a base ref
..
head repository: electron-userland/electron-builder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: be1af8a578472c096a8c1048e4170c6d7d4bdba7
Choose a head ref
Showing with 417 additions and 415 deletions.
  1. +1 −1 .github/workflows/issue-labeler.yml
  2. +5 −3 .github/workflows/test.yaml
  3. +409 −409 test/snapshots/BuildTest.js.snap
  4. +2 −2 test/src/BuildTest.ts
2 changes: 1 addition & 1 deletion .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
issues: write # for github/issue-labeler to create or remove labels
runs-on: ubuntu-latest
steps:
- uses: github/issue-labeler@de16e742018d174ccf61d287f6ed31eb48faa64f # v2.6
- uses: github/issue-labeler@cd54a96bcc32e2a890e865b2eceffee3fc458b9d # v3.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/issue-labeler.yml
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ jobs:
- name: Checkout code repository
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
with:
fetch-depth: 0
fetch-depth: 2

- name: Setup Tests
uses: ./.github/actions/pretest
@@ -41,11 +41,13 @@ jobs:
run: pnpm pretest

- name: Determine if Dockerfiles changed
id: changed-files
id: changed-files-specific
uses: tj-actions/changed-files@ce4b8e3cba2220de8132ac9721ff754efd6bb7d7 # v34
with:
files: docker/**

- name: Dockerfile has changed, rebuild for tests
if: ${{ github.event.inputs.build-docker-locally == 'true' }} || contains(steps.changed-files.outputs.all_changed_files, 'Dockerfile') || contains(steps.changed-files.outputs.all_changed_files, 'docker')
if: ${{ github.event.inputs.build-docker-locally == 'true' }} || steps.changed-files-specific.outputs.any_changed == 'true'
run: pnpm docker-images

- name: Run tests in docker image
Loading