Skip to content

Commit

Permalink
chore(aws): fix ci (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
Almouro authored Mar 26, 2024
1 parent fb45fe5 commit 45011bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ phases:
commands:
- echo "Navigate to test source code"
- cd $DEVICEFARM_TEST_PACKAGE_PATH/node_modules/*
- yarn
- yarn install --production --ignore-engines
- echo 'this is the test command'
- mv result*.json $DEVICEFARM_LOG_DIR
- mv *.mp4 $DEVICEFARM_LOG_DIR || true
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/aws-device-farm/src/createTestSpecFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const getSingleTestFileYml = ({
export const getTestCommandYml = ({ testCommand }: { testCommand: string }) => {
return buildAppiumYmlSpec({
installCommands: ["npm install --global yarn"],
testCommands: ["yarn", testCommand],
testCommands: ["yarn install --production --ignore-engines", testCommand],
});
};

Expand Down
1 change: 1 addition & 0 deletions packages/plugins/eslint/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable import/no-extraneous-dependencies */
//------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"keywords": [],
"author": "Thomas Niebojewski",
"license": "MIT",
"dependencies": {
"devDependencies": {
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/rule-tester": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
Expand Down

0 comments on commit 45011bb

Please sign in to comment.