Skip to content

Update both Wordpress and Woocommerce version #323

Update both Wordpress and Woocommerce version

Update both Wordpress and Woocommerce version #323

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
cypress-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hoverkraft-tech/[email protected]
with:
down-flags: '--volumes'
- name: Run tests
run: |
cd tests
npm install
npx cypress run
- name: Upload screenshots
if: failure()
uses: actions/upload-artifact@v4
with:
name: screenshots
path: tests/cypress/screenshots/
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Subversion
run: sudo apt-get update && sudo apt-get install -y subversion
- name: Build plugin zip file
run: ./build.bash
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: komoju-japanese-payments
path: komoju-japanese-payments.zip
retention-days: 1
e2e-tests:
runs-on: ubuntu-latest
needs: [build]
env:
TARGET: staging
WAF_STAGING_TOKEN: ${{ secrets.WAF_STAGING_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
repository: 'degica/komoju-e2e-tests'
submodules: recursive
token: ${{ secrets.BUNDLER_SSH_KEY }}
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: komoju-japanese-payments
- name: Show files
run: ls
- name: Modify Docker build context
run: |-
echo "RUN apk update && apk add build-base libffi-dev openssl-dev" >> Dockerfile
- name: Set up docker-compose
run: |-
docker compose -f docker-compose.arm.yml build
docker compose -f docker-compose.arm.yml up -d
- name: Run e2e tests
run: docker compose run tester rspec spec/woocommerce