Skip to content

Commit 4c9bb5e

Browse files
committed
chore: full npm install for github action
Otherwise all my dependabot actions fail. Note: this is a similar change as in swiing/Bit-TypedArray@54352d2
1 parent ea913e9 commit 4c9bb5e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Node.js CI
22

33
on:
44
push:
5-
paths-ignore: [ 'LICENSE', 'example/**', '**.md', '.*' ]
5+
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
66
pull_request:
7-
paths-ignore: [ 'LICENSE', 'example/**', '**.md', '.*' ]
7+
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
88

99
jobs:
1010
build:
@@ -24,6 +24,6 @@ jobs:
2424
node-version: ${{ matrix.node-version }}
2525
cache: 'npm'
2626
- name: Install dependencies
27-
run: npm ci
27+
run: npm install # npm ci
2828
- run: npm run build --if-present
2929
- run: npm test

0 commit comments

Comments
 (0)