Skip to content

Commit

Permalink
feat(repo): add e2e workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandg7 committed Oct 17, 2020
1 parent 6164da2 commit dd77079
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/run-e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run e2e tests

on: [pull_request]

jobs:
run_e2e:
name: Run e2e
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and run test
run: |
yarn
yarn e2e nx-shopify-e2e

0 comments on commit dd77079

Please sign in to comment.