chore(deps): update dependency ubuntu to v24 #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: subfolder | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Print versions | |
run: | | |
which npm | |
npm --version | |
which yarn | |
yarn --version | |
# first, install dependencies and Cypress | |
# from the root folder using the lock file | |
# note: because there is lerna.json file and lerna dependency | |
# the single "yarn" install in the root | |
# will install packages in all subfolders and link them | |
- name: Cypress install | |
uses: cypress-io/github-action@v2 | |
with: | |
runTests: false | |
# now run the tests from the subfolder | |
- name: Cypress run | |
uses: cypress-io/github-action@v2 | |
with: | |
install: false | |
working-directory: packages/e2e | |
start: yarn start-server |