Skip to content

Commit

Permalink
now fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyhalight committed Aug 6, 2024
1 parent 6447128 commit 3a45af4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
node-version: [18.18.x, 22.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
Expand All @@ -25,7 +25,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install 🔧
shell: bash
run: npm install
run: npm install --legacy-peer-deps
- name: Build 🔧
run: npm run build
- name: Upload Artifact 🚀
Expand Down
8 changes: 7 additions & 1 deletion README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,13 @@ These domains can be set in the extension settings (only those domains that can
2. Install dependencies:

```bash
npm i
npm install --legacy-peer-deps
```

Bun:

```bash
bun install --yarn
```

3. Building an extension:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
NPM:

```bash
npm install
npm install --legacy-peer-deps
```

Bun:
Expand Down

0 comments on commit 3a45af4

Please sign in to comment.