forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (30 loc) · 915 Bytes
/
example-basic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: example-basic
# This workflow represents a set of basic End-to-End tests
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
basic:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- 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
# 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