Skip to content

Commit deabbc7

Browse files
authored
Merge pull request ds300#188 from DanielRuf/ci/fix-windows-setup
run the CI for pull requests
2 parents 505da14 + e53e8e9 commit deabbc7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/push.yml renamed to .github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
on: [push]
1+
on: [push, pull_request]
22
name: Test
33
jobs:
44
test:
55
name: ${{ matrix.os }} on node ${{ matrix.node }}
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [windows-latest, ubuntu-latest, macos-latest]
9+
os: [ubuntu-latest]
1010
node: [10, 12, 13]
1111
steps:
1212
- uses: actions/checkout@v1

integration-tests/custom-patch-dir/custom-patch-dir.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npx replace pad patch-package node_modules/left-pad/index.js
1010
mkdir my
1111

1212
echo "make patch file"
13-
patch-package left-pad --patch-dir my/patches
13+
npx patch-package left-pad --patch-dir my/patches
1414

1515
ls my/patches/left-pad*
1616

@@ -19,6 +19,6 @@ rimraf node_modules
1919
yarn
2020

2121
echo "run patch-package"
22-
patch-package --patch-dir my/patches
22+
npx patch-package --patch-dir my/patches
2323

2424
grep patch-package node_modules/left-pad/index.js

0 commit comments

Comments
 (0)