diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 320d48a..d5dcfcf 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [8.x, 10.x, 12.x] + node-version: [10.x, 12.x] steps: - uses: actions/checkout@v1 @@ -19,7 +19,8 @@ jobs: node-version: ${{ matrix.node-version }} - name: npm install, build, and test run: | - npm run build --if-present + npm install + npm ci npm test env: CI: true diff --git a/package.json b/package.json index 0234a87..ca78636 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "convert-csv-to-json", - "version": "0.0.14", + "version": "0.0.15", "description": "Convert CSV to JSON", "main": "index.js", "scripts": {