File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
name : Lint
2
2
3
- on : [push]
3
+ on : [push, pull_request ]
4
4
5
5
jobs :
6
6
build :
Original file line number Diff line number Diff line change 1
1
name : Test
2
2
3
- on : [push]
3
+ on : [push, pull_request ]
4
4
5
5
jobs :
6
6
build :
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ custom:
180
180
181
181
To specify additional directories to remove from the installed packages,
182
182
define a list of patterns in the serverless config using the `slimPatterns`
183
- option and glob syntax. These paterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
183
+ option and glob syntax. These patterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
184
184
Note, the glob syntax matches against whole paths, so to match a file in any
185
185
directory, start your pattern with `**/`.
186
186
Original file line number Diff line number Diff line change @@ -1101,7 +1101,7 @@ test(
1101
1101
async t => {
1102
1102
process . chdir ( 'tests/base' ) ;
1103
1103
const path = npm ( [ 'pack' , '../..' ] ) ;
1104
- const perm = '775 ' ;
1104
+ const perm = '755 ' ;
1105
1105
1106
1106
npm ( [ 'i' , path ] ) ;
1107
1107
perl ( [
@@ -1895,7 +1895,7 @@ test(
1895
1895
async t => {
1896
1896
process . chdir ( 'tests/individually' ) ;
1897
1897
const path = npm ( [ 'pack' , '../..' ] ) ;
1898
- const perm = '775 ' ;
1898
+ const perm = '755 ' ;
1899
1899
writeFileSync ( `module1${ sep } foobar` , '' ) ;
1900
1900
chmodSync ( `module1${ sep } foobar` , perm ) ;
1901
1901
@@ -1934,7 +1934,7 @@ test(
1934
1934
async t => {
1935
1935
process . chdir ( 'tests/individually' ) ;
1936
1936
const path = npm ( [ 'pack' , '../..' ] ) ;
1937
- const perm = '775 ' ;
1937
+ const perm = '755 ' ;
1938
1938
writeFileSync ( `module1${ sep } foobar` , '' , { mode : perm } ) ;
1939
1939
chmodSync ( `module1${ sep } foobar` , perm ) ;
1940
1940
You can’t perform that action at this time.
0 commit comments