Skip to content

Commit 1e93af2

Browse files
authored
Merge pull request #383 from manosim/build-no-codesign
Build PRs without codesign-ing
2 parents b172e8e + c7468ad commit 1e93af2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/build-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CSC_LINK: ${{ secrets.mac_certs }}
3535
CSC_KEY_PASSWORD: ${{ secrets.mac_certs_password }}
36-
run: yarn make:macos
36+
run: yarn make:macos -c.mac.identity=null
3737

3838
- name: Clean up builds
3939
run: rm -rfv dist/mac

src/js/components/__snapshots__/notification.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ exports[`components/notification.js should render itself & its children 1`] = `
5050
</span>
5151
- Updated
5252
53-
over 2 years ago
53+
in over 3 years
5454
</div>
5555
</div>
5656
<div

src/js/components/notification.test.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ describe('components/notification.js', () => {
2828
});
2929

3030
it('should render itself & its children', async () => {
31+
(global as any).Date.now = jest.fn(() => new Date('2014'));
32+
3133
const props = {
3234
markNotification: jest.fn(),
3335
markOnClick: false,

0 commit comments

Comments
 (0)