Skip to content

Commit

Permalink
add native install workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Dec 6, 2024
1 parent c5e0341 commit 4f7e63d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test-native-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Test Cypress install # native installation of Cypress
on: workflow_dispatch
jobs:
install:
runs-on: ubuntu-22.04
steps:
- run: npm init -y
- run: npm install cypress --ignore-scripts # install Cypress npm module only
- run: npx cypress install # install Cypress binary
env:
DEBUG: 'cypress:*'
- run: npx cypress verify

0 comments on commit 4f7e63d

Please sign in to comment.