Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ignore] try upgrading execa #5931

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
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
29 changes: 0 additions & 29 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ jobs:
deno-version: ['v1.37.0', 'v1.44.4']
include:
- os: ubuntu-latest
node-version: '14.16.0'
deno-version: 'v1.44.4'
fail-fast: false
steps:
Expand Down Expand Up @@ -85,9 +84,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Install npm@7
run: npm install -g npm@7
if: ${{ matrix.node-version == '14.16.0' && !steps.release-check.outputs.IS_RELEASE }}
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
Expand Down Expand Up @@ -126,28 +122,6 @@ jobs:
install-command: ['npm ci']
machine: ['0', '1', '2', '3', '4']
include:
# We test on the oldest supported Node.js version, but only with a
# single combination (Ubuntu)
- os: ubuntu-latest
node-version: '14.16.0'
install-command: npm ci
machine: '0'
- os: ubuntu-latest
node-version: '14.16.0'
install-command: npm ci
machine: '1'
- os: ubuntu-latest
node-version: '14.16.0'
install-command: npm ci
machine: '2'
- os: ubuntu-latest
node-version: '14.16.0'
install-command: npm ci
machine: '3'
- os: ubuntu-latest
node-version: '14.16.0'
install-command: npm ci
machine: '4'
# The buildbot pins Netlify Build's dependencies, like `npm ci`.
# But other consumers do not, like `npm install`.
# So we test both.
Expand Down Expand Up @@ -200,9 +174,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
- name: Install npm@7
run: npm install -g npm@7
if: ${{ matrix.node-version == '14.16.0' && !steps.release-check.outputs.IS_RELEASE }}
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion ava.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as execa from 'execa'

const { execaCommand } = execa
if (process.argv.includes('-w')) {
execaCommand('tsc -w', { cleanup: true })
execaCommand('tsc -w', { cleanup: true, verbose: 'full' })
}

// `tests-metadata.json` is created by running `npx lerna run test:measure --scope @netlify/build`
Expand Down
Loading
Loading