Skip to content

Commit

Permalink
Switch from yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed Oct 13, 2023
1 parent 84bfd70 commit 722b06d
Show file tree
Hide file tree
Showing 5 changed files with 9,203 additions and 5,653 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20' ]
node-version: [ '18', '20' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
node-version: ${{ matrix.node-version }}
registry-url: <registry url>
- run: yarn install
- run: yarn test
- run: npm ci
- run: npm test
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ This is a pure JS in-memory implementation of [the IndexedDB API](https://w3c.gi
npm install --save-dev fake-indexeddb
```

or

```sh
yarn add --dev fake-indexeddb
```

## Use

Functionally, it works exactly like IndexedDB except data is not persisted to disk.
Expand Down
Loading

0 comments on commit 722b06d

Please sign in to comment.