diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf621d22..5cb12cca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,10 +5,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 14.x + - name: Use Node.js 16.x uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Cache NPM dependencies uses: actions/cache@v1 with: @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - node-version: ['10.x', '12.x', '14.x'] + node-version: ['14.x', '16.x', '18.x'] fail-fast: false steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 531fd1e1..f7b58e06 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js v14 + - name: Use Node.js v16 uses: actions/setup-node@v1 with: - node-version: '14' + node-version: '16' - run: npm install - name: Create Pages run: npm run jsdoc diff --git a/package.json b/package.json index 11fbcb44..6f315167 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,6 @@ "sinon": "^13.0.2" }, "engines": { - "node": ">=10.13.0" + "node": ">=14" } }