File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 39
39
commands :
40
40
- npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN}
41
41
- echo "--- Install dependencies"
42
- - yarn install --immutable
42
+ - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn install --immutable
43
43
- echo "--- Build bundles"
44
44
- yarn run -T browser . build
45
45
- echo '--- Check Size limit'
Original file line number Diff line number Diff line change @@ -21,19 +21,19 @@ test-unit: node_modules ## Runs unit tests
21
21
$(yarn_run ) test
22
22
.PHONY : test-unit
23
23
24
- test-qa : build
24
+ test-qa : build
25
25
COVERAGE=false $(yarn_run ) test --runTestsByPath qa/__tests__/* .test.ts --testPathIgnorePatterns qa/__tests__/destinations.test.ts --reporters=" default" --reporters=" <rootDir>/qa/lib/jest-reporter.js" ${args}
26
26
.PHONY : test-qa
27
27
28
- test-qa-destinations : build
28
+ test-qa-destinations : build
29
29
COVERAGE=false $(yarn_run ) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters=" default" --reporters=" <rootDir>/qa/lib/jest-reporter.js" ${args}
30
30
.PHONY : test-
31
31
32
- test-integration : build
32
+ test-integration : build
33
33
COVERAGE=false $(yarn_run ) test --forceExit --runTestsByPath e2e-tests/** /* .test.ts ${args}
34
34
.PHONY : test-integration
35
35
36
- test-perf : build
36
+ test-perf : build
37
37
$(yarn_run ) test --forceExit --runTestsByPath e2e-tests/performance/* .test.ts ${args}
38
38
.PHONY : test-perf
39
39
You can’t perform that action at this time.
0 commit comments