adventurous-dream-20049
06/07/2022, 10:10 PMname: v10
# run workflow on git push and git pull
on: [push, pull_request]
jobs:
cypress-run:
# OS
runs-on: ubuntu-latest
steps:
- name: Checkout
# checks-out your repository so your workflow can access it
uses: actions/checkout@v2
- name: Run Cypress
# GitHub Action for running Cypress end-to-end tests
uses: cypress-io/github-action@v4
with:
record: true
config-file: cypress.config.js
adventurous-dream-20049
06/07/2022, 10:26 PMcool-market-53071
06/07/2022, 11:50 PMcool-market-53071
06/07/2022, 11:50 PMRun cypress-io/github-action@v4
with:
build: npm run build
start: npm start
record: false
component: false
undefined:18
},
^
cool-market-53071
06/07/2022, 11:51 PMadventurous-dream-20049
06/08/2022, 2:03 AMcool-market-53071
06/08/2022, 2:04 AMcool-market-53071
06/08/2022, 2:05 AMadventurous-dream-20049
06/08/2022, 2:44 AMcool-market-53071
06/08/2022, 2:49 AMcool-market-53071
06/08/2022, 2:49 AMadventurous-dream-20049
06/08/2022, 2:52 AMpackage.json
. Can you try removing the commas in lines 17 and 20?cool-market-53071
06/08/2022, 2:54 AMadventurous-dream-20049
06/08/2022, 2:56 AMnpm i
.cool-market-53071
06/08/2022, 2:56 AMcool-market-53071
06/08/2022, 2:56 AMadventurous-dream-20049
06/08/2022, 3:07 AMgithub-actions-init.yml
you have 2 scripts called npm run build
and npm start
, but in that package.json
file the build
script is for npm run lint
(which the error says you do not have lint) and the start
is for node ./scripts/start.js
, but I do not see that directory in your project.cool-market-53071
06/08/2022, 3:08 AMadventurous-dream-20049
06/08/2022, 3:08 AMcool-market-53071
06/08/2022, 3:09 AMcool-market-53071
06/08/2022, 3:10 AMadventurous-dream-20049
06/08/2022, 3:10 AMadventurous-dream-20049
06/08/2022, 3:17 AMcy.get()
with a passing test using version 10?adventurous-dream-20049
06/08/2022, 3:17 AMcool-market-53071
06/08/2022, 3:18 AMcool-market-53071
06/08/2022, 3:19 AMcool-market-53071
06/08/2022, 3:20 AMcool-market-53071
06/08/2022, 3:20 AMcool-market-53071
06/08/2022, 3:20 AMadventurous-dream-20049
06/08/2022, 3:36 AMadventurous-dream-20049
06/08/2022, 3:38 AMcool-market-53071
06/08/2022, 3:39 AMcool-market-53071
06/08/2022, 3:40 AMadventurous-dream-20049
06/08/2022, 3:45 AMcy.get('.stdout').should('contain, 'Enter your name as appears on a prescription:').type('Graham Chiu')
cool-market-53071
06/08/2022, 4:01 AMcool-market-53071
06/08/2022, 4:12 AMcool-market-53071
06/08/2022, 4:12 AMcool-market-53071
06/08/2022, 4:13 AMadventurous-dream-20049
06/08/2022, 4:28 AMadventurous-dream-20049
06/08/2022, 4:28 AMadventurous-dream-20049
06/08/2022, 4:30 AMcy.get('.stdout').eq(0).should('contain, 'Enter your name as appears on a prescription:').type('Graham Chiu')
cool-market-53071
06/08/2022, 7:15 AMadventurous-dream-20049
06/08/2022, 10:00 AMadventurous-dream-20049
06/08/2022, 10:02 AMadventurous-dream-20049
06/08/2022, 10:03 AMcool-market-53071
06/08/2022, 8:50 PMdata-input
attribute be added.cool-market-53071
06/08/2022, 8:50 PM