Skip to content

Commit

Permalink
feat: add support for Node 14 (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanmar511 committed Nov 2, 2020
1 parent 51c5f36 commit 3b8f4ad
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 13]
node: [10, 12, 13, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down
13 changes: 13 additions & 0 deletions system-test/integration_test.go
Expand Up @@ -280,6 +280,19 @@ func TestAgentIntegration(t *testing.T) {
timeout: gceTestTimeout,
benchDuration: gceBenchDuration,
},
{
InstanceConfig: proftest.InstanceConfig{
ProjectID: projectID,
Zone: zone,
Name: fmt.Sprintf("profiler-test-node14-%s", runID),
MachineType: "n1-standard-1",
},
name: fmt.Sprintf("profiler-test-node14-%s-gce", runID),
wantProfiles: wantProfiles,
nodeVersion: "14",
timeout: gceTestTimeout,
benchDuration: gceBenchDuration,
},
}

if *runBackoffTest {
Expand Down

0 comments on commit 3b8f4ad

Please sign in to comment.