Skip to content

Commit fc7e7a6

Browse files
authored
Merge branch 'master' into fix-single-function-deployment
2 parents 2d55a6e + d86b7fb commit fc7e7a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Lint
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
build:

test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ test(
11011101
async t => {
11021102
process.chdir('tests/base');
11031103
const path = npm(['pack', '../..']);
1104-
const perm = '775';
1104+
const perm = '755';
11051105

11061106
npm(['i', path]);
11071107
perl([
@@ -1895,7 +1895,7 @@ test(
18951895
async t => {
18961896
process.chdir('tests/individually');
18971897
const path = npm(['pack', '../..']);
1898-
const perm = '775';
1898+
const perm = '755';
18991899
writeFileSync(`module1${sep}foobar`, '');
19001900
chmodSync(`module1${sep}foobar`, perm);
19011901

@@ -1934,7 +1934,7 @@ test(
19341934
async t => {
19351935
process.chdir('tests/individually');
19361936
const path = npm(['pack', '../..']);
1937-
const perm = '775';
1937+
const perm = '755';
19381938
writeFileSync(`module1${sep}foobar`, '', { mode: perm });
19391939
chmodSync(`module1${sep}foobar`, perm);
19401940

0 commit comments

Comments
 (0)