Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,21 @@ name: CI
on: [ push, pull_request ]
jobs:
build:
continue-on-error: true
runs-on: ubuntu-latest

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

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v5
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v1
uses: actions/setup-node@v5
with:
node-version: ${{matrix.node-version}}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{matrix.node-version}}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-${{matrix.node-version}}-
${{ runner.OS }}-node-
${{ runner.OS }}-
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/PUBLISH.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha --exit -r test/expect test/spec/*.js",
"release": "np --no-publish"
"release": "np"
},
"authors": [
"Nico Rehwaldt <git_nikku@nixis.de>",
Expand Down
Loading