diff --git a/.github/workflows/run-e2e.yml b/.github/workflows/run-e2e.yml new file mode 100644 index 0000000..1c51385 --- /dev/null +++ b/.github/workflows/run-e2e.yml @@ -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 \ No newline at end of file