From 03674793bd00af1171a48464ec2effe0051c7c28 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Thu, 8 Dec 2022 11:36:23 -0600 Subject: [PATCH 1/3] refactor: remove oclif flags --- src/commands/deploy.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/commands/deploy.ts b/src/commands/deploy.ts index ffe8218c8..fb854c224 100644 --- a/src/commands/deploy.ts +++ b/src/commands/deploy.ts @@ -7,11 +7,19 @@ /* eslint-disable class-methods-use-this */ import { EOL } from 'os'; -import { Flags, Hook } from '@oclif/core'; +import { Hook } from '@oclif/core'; import { Messages } from '@salesforce/core'; import { writeJson, pathExists, writeFile, readFile } from 'fs-extra'; import { Env, parseJsonMap } from '@salesforce/kit'; -import { Deployable, Deployer, generateTableChoices, Prompter, SfCommand, SfHook } from '@salesforce/sf-plugins-core'; +import { + Deployable, + Deployer, + generateTableChoices, + Prompter, + SfCommand, + SfHook, + Flags, +} from '@salesforce/sf-plugins-core'; import { exec } from 'shelljs'; import { DeployerResult } from '@salesforce/sf-plugins-core/lib/deployer'; From feb59760751e015791367ad0a601e7bb4eae1815 Mon Sep 17 00:00:00 2001 From: Willhoit Date: Thu, 8 Dec 2022 15:27:01 -0600 Subject: [PATCH 2/3] chore: nuts config (#450) --- .github/workflows/test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04639c096..f30476145 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,15 @@ jobs: secrets: inherit strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-20-8core, windows-2022-16core] + command: + - 'yarn test:nuts:deploy:metadata:manifest' + - 'yarn test:nuts:deploy:metadata:metadata-dir' + - 'yarn test:nuts:deploy:metadata:metadata' + - 'yarn test:nuts:deploy:metadata:source-dir' + - 'yarn test:nuts:deploy:metadata:test-level' + - 'yarn test:nuts:static' + - 'yarn test:nuts:tracking' fail-fast: false with: os: ${{ matrix.os }} From 6dd0c69f463900ee042cc187b0a5a65bcecad872 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Fri, 9 Dec 2022 07:25:44 -0600 Subject: [PATCH 3/3] test: correct NUTs --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f30476145..6545e722b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,3 +32,4 @@ jobs: fail-fast: false with: os: ${{ matrix.os }} + command: ${{ matrix.command }}