Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI test only] Cypress E2E Windows Runner #2227

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/dependabot.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/build-eslint-jest.yaml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/create_pr_artifact.yaml

This file was deleted.

12 changes: 8 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.repository == 'redwoodjs/redwood'
strategy:
matrix:
os: ['ubuntu-latest']
os: ['windows-latest']
node-version: ['14']
fail-fast: true
runs-on: ${{ matrix.os }}
Expand All @@ -30,17 +30,21 @@ jobs:

- name: Create a temporary directory
id: createpath
shell: bash
run: |
project_path=$(mktemp -d -t redwood.XXXXXX)
echo "::set-output name=project_path::$project_path"

- name: Create a RedwoodJS app
shell: bash
run: ./tasks/run-e2e ${{ steps.createpath.outputs.project_path }} --no-start

- name: Start server in background
run: yarn rw dev &
working-directory: ${{ steps.createpath.outputs.project_path }}

shell: bash
run: |
echo "${{ steps.createpath.outputs.project_path }}"
cd "${{ steps.createpath.outputs.project_path }}"
yarn rw dev &

- name: Cypress run
uses: cypress-io/github-action@v2
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/netlify-build.yaml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/publish-npm-canary.yaml

This file was deleted.

82 changes: 0 additions & 82 deletions .github/workflows/publish_pr_packages.yaml

This file was deleted.

Loading