Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve deprecation warnings for example-basic-pnpm #666

Merged
merged 1 commit into from Dec 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/example-basic-pnpm.yml
@@ -1,4 +1,4 @@
name: example-basic
name: example-basic-pnpm
on:
push:
branches:
Expand All @@ -7,8 +7,8 @@ on:
jobs:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v9 and lower ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #

basic-pnpm-ubuntu-18:
runs-on: ubuntu-18.04
basic-pnpm-ubuntu-20:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -20,7 +20,7 @@ jobs:

- name: Cypress tests
# normally you would write
# uses: cypress-io/github-action@v2
# uses: cypress-io/github-action@v5
uses: ./
# the parameters below are only necessary
# because we are running these examples in a monorepo
Expand All @@ -31,8 +31,8 @@ jobs:
# see https://on.cypress.io/command-line#cypress-info
build: npx cypress info

basic-pnpm-ubuntu-20:
runs-on: ubuntu-20.04
basic-pnpm-ubuntu-22:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -109,8 +109,8 @@ jobs:

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Cypress v10 and higher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #

basic-pnpm-ubuntu-18-v10:
runs-on: ubuntu-18.04
basic-pnpm-ubuntu-20-v10:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -122,7 +122,7 @@ jobs:

- name: Cypress tests
# normally you would write
# uses: cypress-io/github-action@v2
# uses: cypress-io/github-action@v5
uses: ./
# the parameters below are only necessary
# because we are running these examples in a monorepo
Expand All @@ -133,8 +133,8 @@ jobs:
# see https://on.cypress.io/command-line#cypress-info
build: npx cypress info

basic-pnpm-ubuntu-20-v10:
runs-on: ubuntu-20.04
basic-pnpm-ubuntu-22-v10:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down