From 1b61cbce19ba5fe8b5b0736c789aa007da150859 Mon Sep 17 00:00:00 2001 From: Hugo Pierret Date: Sun, 20 Oct 2024 12:28:47 +0200 Subject: [PATCH] Add Legacy peer deps --- .github/workflows/node.js.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index edf0303..d902161 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -20,12 +20,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: "npm" - - run: npm ci + + - run: npm ci --legacy-peer-deps - name: Build project run: npm run build