Skip to content

Commit

Permalink
debug and use only ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Sep 27, 2023
1 parent dab2535 commit f35f0b4
Showing 1 changed file with 84 additions and 81 deletions.
165 changes: 84 additions & 81 deletions .github/workflows/example-basic-pnpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,34 @@ on:
pull_request:
workflow_dispatch:

jobs:

basic-pnpm-ubuntu-20:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
env:
DEBUG: '@cypress/github-action'

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
jobs:

- name: Cypress tests
# normally you would write
# uses: cypress-io/github-action@v6
uses: ./
# the parameters below are only necessary
# because we are running these examples in a monorepo
with:
working-directory: examples/basic-pnpm
# just for full picture after installing Cypress
# print information about detected browsers, etc
# see https://on.cypress.io/command-line#cypress-info
build: npx cypress info
# basic-pnpm-ubuntu-20:
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8

# - name: Cypress tests
# # normally you would write
# # uses: cypress-io/github-action@v6
# uses: ./
# # the parameters below are only necessary
# # because we are running these examples in a monorepo
# with:
# working-directory: examples/basic-pnpm
# # just for full picture after installing Cypress
# # print information about detected browsers, etc
# # see https://on.cypress.io/command-line#cypress-info
# build: npx cypress info

basic-pnpm-ubuntu-22:
runs-on: ubuntu-22.04
Expand All @@ -49,61 +52,61 @@ jobs:
working-directory: examples/basic-pnpm
build: npx cypress info

basic-pnpm-on-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Cypress tests
uses: ./
with:
working-directory: examples/basic-pnpm
build: npx cypress info

basic-pnpm-on-mac:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Cypress tests
uses: ./
with:
working-directory: examples/basic-pnpm
build: npx cypress info

# skips the binary installation
# shows that the job should not fail
# https://github.com/cypress-io/github-action/issues/327
basic-pnpm-without-binary-install:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Cypress tests
uses: ./
with:
working-directory: examples/basic-pnpm
# since we do not install Cypress
# we should not attempt to run tests
runTests: false
env:
# skip the binary install
CYPRESS_INSTALL_BINARY: 0
# basic-pnpm-on-windows:
# runs-on: windows-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8

# - name: Cypress tests
# uses: ./
# with:
# working-directory: examples/basic-pnpm
# build: npx cypress info

# basic-pnpm-on-mac:
# runs-on: macos-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8

# - name: Cypress tests
# uses: ./
# with:
# working-directory: examples/basic-pnpm
# build: npx cypress info

# # skips the binary installation
# # shows that the job should not fail
# # https://github.com/cypress-io/github-action/issues/327
# basic-pnpm-without-binary-install:
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# uses: actions/checkout@v4

# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8

# - name: Cypress tests
# uses: ./
# with:
# working-directory: examples/basic-pnpm
# # since we do not install Cypress
# # we should not attempt to run tests
# runTests: false
# env:
# # skip the binary install
# CYPRESS_INSTALL_BINARY: 0

0 comments on commit f35f0b4

Please sign in to comment.