mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 04:05:52 +00:00
Switches from yarn to npm (#1591)
* remove yarn.lock * reinstall with npm * fix package.json * update xrplf eslint * fix all other instances of yarn
This commit is contained in:
18
.github/workflows/nodejs.yml
vendored
18
.github/workflows/nodejs.yml
vendored
@@ -23,9 +23,9 @@ jobs:
|
||||
# uses: actions/setup-node@v1
|
||||
# with:
|
||||
# node-version: ${{ matrix.node-version }}
|
||||
# - run: yarn install
|
||||
# - run: yarn lint
|
||||
# - run: yarn build
|
||||
# - run: npm run install
|
||||
# - run: npm run lint
|
||||
# - run: npm run build
|
||||
|
||||
unit:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -41,8 +41,8 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn install --ignore-engines
|
||||
- run: yarn test
|
||||
- run: npm install --ignore-engines
|
||||
- run: npm test
|
||||
|
||||
integration:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -65,8 +65,8 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn install --ignore-engines
|
||||
- run: yarn test:integration
|
||||
- run: npm install --ignore-engines
|
||||
- run: npm run test:integration
|
||||
env:
|
||||
HOST: localhost
|
||||
PORT: ${{ job.services.rippled.ports['6006'] }}
|
||||
@@ -92,5 +92,5 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn install
|
||||
- run: yarn test:browser
|
||||
- run: npm install
|
||||
- run: npm run test:browser
|
||||
|
||||
Reference in New Issue
Block a user