mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-12-22 18:18:55 +00:00
CI: avoid npm funding messages
This commit is contained in:
parent
e03e07e4bd
commit
292ac39328
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -25,8 +25,9 @@ jobs:
|
|||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- run: npm install # will also, through `prepare` hook, 1. install ./app, and 2. build
|
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
||||||
# Only run linter once, for faster CI. Align the verisons of Node here with above and publish.yml.
|
- run: npm install --no-fund
|
||||||
|
# Only run linter once, for faster CI. Align the versions of Node here with above and publish.yml.
|
||||||
- if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '14.x'
|
- if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '14.x'
|
||||||
run: npm run lint
|
run: npm run lint
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
node-version: '14.x'
|
node-version: '14.x'
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
||||||
- run: npm install
|
- run: npm install --no-fund
|
||||||
- run: npm test
|
- run: npm test
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm publish
|
- run: npm publish
|
||||||
|
Loading…
Reference in New Issue
Block a user