Skip to content

Commit a2c96ce

Browse files
committed
build, THEN lint?
1 parent d67b6ae commit a2c96ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ commands:
1919
run-lint-and-build:
2020
steps:
2121
- node/install-packages
22+
- run:
23+
name: 'Build Electron Forge'
24+
command: |
25+
yarn build
2226
- run:
2327
name: 'Lint codebase'
2428
command: |
2529
yarn lint
2630
yarn syncpack
27-
- run:
28-
name: 'Build Electron Forge'
29-
command: |
30-
yarn build
3131
run-fast-tests:
3232
steps:
3333
- node/install-packages:

packages/template/vite-typescript/spec/ViteTypeScriptTemplate.slow.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('ViteTypeScriptTemplate', { timeout: 120000 }, () => {
5353

5454
it('should ensure js source files from base template are removed', async () => {
5555
const jsFiles = await glob(path.join(dir, 'src', '**', '*.js'));
56-
expect(jsFiles.length).toEqual(0, `The following unexpected js files were found in the src/ folder: ${JSON.stringify(jsFiles)}`);
56+
expect(jsFiles.length).toEqual(0);
5757
});
5858
});
5959

0 commit comments

Comments
 (0)