Skip to content

Commit

Permalink
ci(actions): Add cypress test github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cmckni3 committed Nov 1, 2023
1 parent 18aa6d0 commit 8ddae7a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Build

on: [push]
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Deploy demo to GitHub pages

on:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Integration Tests

on:
push:
branches: [master]

jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2

- name: Install and Run Integration tests 🧪
run: |
yarn install
yarn e2e:ci

0 comments on commit 8ddae7a

Please sign in to comment.