Skip to content

Commit

Permalink
Use npm instead of yarn, update react scripts (#137)
Browse files Browse the repository at this point in the history
* Use npm instead of yarn, update react scripts

* Update all dependencies

* Version 1.17.0
  • Loading branch information
dlebech authored Feb 6, 2022
1 parent 0831447 commit f71e509
Show file tree
Hide file tree
Showing 23 changed files with 36,987 additions and 17,399 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn
- run: yarn test --silent --coverage --coverageReporters text lcov
cache: npm
- run: npm ci
- run: npm test -- --silent --coverage --coverageReporters text lcov
- run: bash <(curl -s https://codecov.io/bash)
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
55 changes: 0 additions & 55 deletions .yarn/releases/yarn-2.4.1.cjs

This file was deleted.

1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

6 changes: 0 additions & 6 deletions .yarnrc.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ if you are even using the service or not, since I do not track visits on the ser
Running it locally should be something like this:

```
yarn install
yarn start:lambda
yarn start
npm ci
npm run start:lambda
npm start
```

## The name OTB
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[build]
command = "yarn build && yarn build:lambda"
command = "npm run build && npm run build:lambda"
functions = "lambda"
publish = "build"
Loading

0 comments on commit f71e509

Please sign in to comment.