Skip to content

Commit

Permalink
Create CI to run e2e automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lorainegarutti committed Mar 20, 2023
1 parent 6249ebd commit 5a84f9f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: End-to-end

on:
pull_request:

jobs:
e2e_tests:
name: End-to-end tests run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Use specific node version
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'

- name: Install dependencies
run: yarn install
shell: bash

- name: Run end-to-end tests
run: yarn run test:e2e

- name: Generate end-to-end tests report
run: yarn run test:generate:report

0 comments on commit 5a84f9f

Please sign in to comment.