Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit 2d83961

Browse files
committed
chore: fix Node 8 support
1 parent b91c0f3 commit 2d83961

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- name: Install dependencies
31-
run: npm ci
31+
# TODO: switch to `npm ci` after dropping support for Node 8
32+
run: npm install
3233
- name: Linting
3334
run: npm run format:ci
3435
if: "${{ matrix.node-version == '15.x' }}"

0 commit comments

Comments
 (0)