Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "npm"
check-latest: true
- run: npm install
- run: npm install --legacy-peer-deps
- run: npm run check-format
- run: npm run lint
- run: npm run check-types
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
registry-url: https://registry.npmjs.org
scope: "@retracedhq"
cache: "npm"
- run: npm install
- run: npm install --legacy-peer-deps
- run: npm run build
working-directory: ./

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ clean:

PHONY: deps
deps:
npm install
npm install --legacy-peer-deps

PHONY: build
build:
Expand Down
Loading