Skip to content

ci: add --update-notifier=false for npm ci #72

ci: add --update-notifier=false for npm ci

ci: add --update-notifier=false for npm ci #72

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci --update-notifier=false
- run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/coverage-final.json