diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 17:38:19 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 17:38:19 -0700 |
commit | 9e94d4f1cc4e7d2e295ef0b1e5db5b4b8b5262e2 (patch) | |
tree | 8c27e08c1ff76bcab9115dbc304f9e1d2aafaa24 /.github | |
parent | 57bcd162b08c059c40d078fbeac5d3abaeb4c2eb (diff) | |
download | sncontinue-9e94d4f1cc4e7d2e295ef0b1e5db5b4b8b5262e2.tar.gz sncontinue-9e94d4f1cc4e7d2e295ef0b1e5db5b4b8b5262e2.tar.bz2 sncontinue-9e94d4f1cc4e7d2e295ef0b1e5db5b4b8b5262e2.zip |
remove --legacy-peer-deps flag
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 50de687e..85026d02 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -76,12 +76,12 @@ jobs: - name: Install extension Dependencies run: | cd extension - npm ci --legacy-peer-deps + npm ci - name: Install react-app Dependencies run: | cd extension/react-app - npm ci --legacy-peer-deps + npm ci - name: Build and Publish run: | |