Skip to content

Commit

Permalink
Add Github Actions configuration (#81)
Browse files Browse the repository at this point in the history
* Add Github Actions configuration

* Add brackets around tagify
  • Loading branch information
peterjaap authored Sep 14, 2022
1 parent cff4fff commit 01d32f2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install the testing suite
run: npm install cypress cypress-file-upload cypress-localstorage-commands cypress-tags typescript --save-dev
- name: Run the Hyvä testing suite
run: CYPRESS_MAGENTO2_SKIP_CHECKOUT=1 CYPRESS_MAGENTO2_SPEC_SUITE=hyva CYPRESS_MAGENTO2_BASE_URL=https://hyva-demo.elgentos.io npx cypress run

0 comments on commit 01d32f2

Please sign in to comment.