name: E2E tests on: push: branches: [trunk] pull_request: jobs: Setup: runs-on: ubuntu-latest name: Setup steps: - uses: actions/checkout@v2 - name: Cache node modules uses: actions/cache@v2 env: cache-name: cache-node-modules with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}- ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}- - name: Use Node.js 14.x uses: actions/setup-node@v1 with: node-version: 14.x - name: Npm install and build run: | npm ci FORCE_REDUCED_MOTION=true npm run build:e2e-test - name: Get Composer Cache Directory id: composer-cache run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - uses: actions/cache@v2 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-composer- - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 coverage: none tools: composer - name: Composer install run: | composer install JSE2EWithGutenberg: name: JavaScript E2E Tests (WP latest with Gutenberg plugin) needs: Setup runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Cache node modules uses: actions/cache@v2 env: cache-name: cache-node-modules with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}- ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}- - name: Use Node.js 14.x uses: actions/setup-node@v1 with: node-version: 14.x - name: Npm install and build run: | npm ci FORCE_REDUCED_MOTION=true npm run build:e2e-test - name: blocks.ini setup run: | echo -e 'woocommerce_blocks_phase = 3\nwoocommerce_blocks_env = tests' > blocks.ini - name: Get Composer Cache Directory id: composer-cache run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - uses: actions/cache@v2 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-composer- - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 coverage: none tools: composer - name: Composer install run: | composer install - name: E2E Tests (WP latest with Gutenberg plugin) env: WOOCOMMERCE_BLOCKS_PHASE: 3 run: | chmod -R 767 ./ #needed for permissions issues JSON='{"plugins": ["https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip","https://github.com/WP-API/Basic-Auth/archive/master.zip","https://downloads.wordpress.org/plugin/gutenberg.latest-stable.zip", "."] }' echo $JSON > .wp-env.override.json npm run wp-env start npm run wp-env clean all npm run test:e2e - name: Upload artifacts on failure if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: e2e-with-gutenberg-test-report path: reports/e2e JSE2ETests: name: JavaScript E2E Tests (latest) needs: Setup runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Cache node modules uses: actions/cache@v2 env: cache-name: cache-node-modules with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}- ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}- - name: Use Node.js 14.x uses: actions/setup-node@v1 with: node-version: 14.x - name: Npm install and build run: | npm ci FORCE_REDUCED_MOTION=true npm run build:e2e-test - name: blocks.ini setup run: | echo -e 'woocommerce_blocks_phase = 3\nwoocommerce_blocks_env = tests' > blocks.ini - name: Get Composer Cache Directory id: composer-cache run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - uses: actions/cache@v2 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-composer- - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 coverage: none tools: composer - name: Composer install run: | composer install - name: E2E Tests (WP latest) env: WOOCOMMERCE_BLOCKS_PHASE: 3 run: | npm run wp-env start npm run wp-env clean all npm run test:e2e - name: Upload artifacts on failure if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: e2e-test-report path: reports/e2e