diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index c2265c5ed8a6..6efba7f7c6d3 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -24,7 +24,7 @@ jobs: node-version: [12, 14, 16, 17] include: - os: macos-latest - node-version: 14 # LTS + node-version: 16 # LTS fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -73,10 +73,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Bootstrap benchmark tests run: | npm ci --ignore-scripts @@ -89,10 +89,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Bootstrap project run: | npm ci --ignore-scripts @@ -112,10 +112,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Install monorepo tools run: | npm ci --ignore-scripts @@ -132,7 +132,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Install monorepo tools run: npm ci --ignore-scripts - name: Validate Renovate config @@ -143,10 +143,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Bootstrap project run: | npm ci --ignore-scripts diff --git a/examples/webpack/src/__tests__/integration/bundle-node.integration.ts b/examples/webpack/src/__tests__/integration/bundle-node.integration.ts index 2899888f3b8b..fcb52a37a7d9 100644 --- a/examples/webpack/src/__tests__/integration/bundle-node.integration.ts +++ b/examples/webpack/src/__tests__/integration/bundle-node.integration.ts @@ -12,7 +12,7 @@ describe('bundle-node.js', () => { before('generate bundle-node.js', async function (this: Mocha.Context) { // It may take some time to generate the bundle using webpack - this.timeout(30000); + this.timeout(50000); await generateBundle('node'); bundle = require('../../bundle-node'); });