Unable to deploy for 1st time itself - Upload to S3 bucket fails due to 'Error: Forbidden. Invalid according to Policy: Policy expired.' #1573
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was automatically generated by github-actions-wac. | |
# DO NOT MODIFY IT BY HAND. Instead, modify the source *.wac.ts file(s) | |
# and run "github-actions-wac build" (or "ghawac build") to regenerate this file. | |
# For more information, run "github-actions-wac --help". | |
name: Pull Requests Command - Cypress | |
'on': issue_comment | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
AWS_REGION: eu-central-1 | |
jobs: | |
validateWorkflows: | |
name: Validate workflows | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Validate | |
run: npx github-actions-wac validate | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
checkComment: | |
name: Check comment for /cypress | |
if: ${{ github.event.issue.pull_request }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Check for Command | |
id: command | |
uses: xt0rted/slash-command-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
command: cypress | |
reaction: 'true' | |
reaction-type: eyes | |
allow-edits: 'false' | |
permission-level: write | |
- name: Create comment | |
uses: peter-evans/create-or-update-comment@v2 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: >- | |
Cypress E2E tests have been initiated (for more information, click | |
[here](https://github.com/webiny/webiny-js/actions/runs/${{ | |
github.run_id }})). :sparkles: | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
e2e-wby-cms-ddb-constants: | |
needs: checkComment | |
name: E2E (DDB) - Constants | |
outputs: | |
global-cache-key: ${{ steps.global-cache-key.outputs.global-cache-key }} | |
run-cache-key: ${{ steps.run-cache-key.outputs.run-cache-key }} | |
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }} | |
pulumi-backend-url: ${{ steps.pulumi-backend-url.outputs.pulumi-backend-url }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: '' | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create global cache key | |
id: global-cache-key | |
run: >- | |
echo "global-cache-key=$(hub pr show ${{ github.event.issue.number }} | |
-f %B)-${{ runner.os }}-$(/bin/date -u "+%m%d")-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create workflow run cache key | |
id: run-cache-key | |
run: >- | |
echo "run-cache-key=${{ github.run_id }}-${{ github.run_attempt }}-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
- name: List Cypress tests folders | |
id: list-cypress-folders | |
run: >- | |
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >> | |
$GITHUB_OUTPUT | |
- name: Get Pulumi backend URL | |
id: get-pulumi-backend-url | |
run: >- | |
echo "pulumi-backend-url=${{ secrets.WEBINY_PULUMI_BACKEND }}${{ | |
github.run_id }}_ddb" >> $GITHUB_OUTPUT | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
e2e-wby-cms-ddb-project-setup: | |
needs: e2e-wby-cms-ddb-constants | |
name: E2E (DDB) - Project setup | |
outputs: | |
cypress-config: ${{ steps.save-cypress-config.outputs.cypress-config }} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-constants.outputs.pulumi-backend-url }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::726952677045:role/GitHubActionsWebinyJs | |
aws-region: eu-central-1 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-constants.outputs.global-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-constants.outputs.run-cache-key }} | |
- name: Start Verdaccio local server | |
working-directory: checked-out-pr | |
run: >- | |
yarn add pm2 verdaccio && npx pm2 start verdaccio -- -c | |
.verdaccio.yaml | |
- name: Configure NPM to use local registry | |
run: npm config set registry http://localhost:4873 | |
- name: Set git email | |
run: git config --global user.email "[email protected]" | |
- name: Set git username | |
run: git config --global user.name "webiny-bot" | |
- name: Create ".npmrc" file in the project root, with a dummy auth token | |
working-directory: checked-out-pr | |
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc | |
- name: Version and publish to Verdaccio | |
working-directory: checked-out-pr | |
run: yarn release --type=verdaccio | |
- name: Create verdaccio-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: verdaccio-files-ddb | |
retention-days: 1 | |
path: |- | |
checked-out-pr/.verdaccio/ | |
checked-out-pr/.verdaccio.yaml | |
- name: Disable Webiny telemetry | |
run: > | |
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' > | |
~/.webiny/config | |
- name: Create a new Webiny project | |
run: > | |
npx create-webiny-project@local-npm new-webiny-project --tag local-npm | |
--no-interactive --assign-to-yarnrc | |
'{"npmRegistryServer":"http://localhost:4873","unsafeHttpWhitelist":["localhost"]}' | |
--template-options '{"region":"${{ env.AWS_REGION | |
}}","storageOperations":"ddb"}' | |
- name: Print CLI version | |
working-directory: new-webiny-project | |
run: yarn webiny --version | |
- name: Create project-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: project-files-ddb | |
retention-days: 1 | |
path: |- | |
new-webiny-project/ | |
!new-webiny-project/node_modules/**/* | |
!new-webiny-project/**/node_modules/**/* | |
!new-webiny-project/.yarn/cache/**/* | |
- name: Deploy Core | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/core --env dev | |
- name: Deploy API | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/api --env dev | |
- name: Deploy Admin Area | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/admin --env dev | |
- name: Deploy Website | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/website --env dev | |
- name: Create Cypress config | |
working-directory: checked-out-pr | |
run: yarn setup-cypress --projectFolder ../new-webiny-project | |
- name: Save Cypress config | |
id: save-cypress-config | |
working-directory: checked-out-pr | |
run: >- | |
echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d | |
'\t\n\r')" >> $GITHUB_OUTPUT | |
- name: Cypress - run installation wizard test | |
working-directory: checked-out-pr | |
run: >- | |
yarn cy:run --browser chrome --spec | |
"cypress/e2e/adminInstallation/**/*.cy.js" | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
e2e-wby-cms-ddb-cypress-tests: | |
name: >- | |
${{ matrix.cypress-folder }} (ddb, ${{ matrix.os }}, Node v${{ matrix.node | |
}}) | |
needs: | |
- e2e-wby-cms-ddb-constants | |
- e2e-wby-cms-ddb-project-setup | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
node: | |
- 18 | |
cypress-folder: >- | |
${{ fromJson(needs.e2e-wby-cms-ddb-constants.outputs.cypress-folders) | |
}} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-constants.outputs.pulumi-backend-url }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-constants.outputs.run-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- name: Set up Cypress config | |
working-directory: checked-out-pr | |
run: >- | |
echo '${{ needs.e2e-wby-cms-ddb-project-setup.outputs.cypress-config | |
}}' > cypress-tests/cypress.config.ts | |
- name: Cypress - run "${{ matrix.cypress-folder }}" tests | |
timeout-minutes: 40 | |
working-directory: checked-out-pr | |
run: yarn cy:run --browser chrome --spec "${{ matrix.cypress-folder }}" | |
runs-on: ubuntu-latest | |
e2e-wby-cms-ddb-es-constants: | |
needs: checkComment | |
name: E2E (DDB-ES) - Constants | |
outputs: | |
global-cache-key: ${{ steps.global-cache-key.outputs.global-cache-key }} | |
run-cache-key: ${{ steps.run-cache-key.outputs.run-cache-key }} | |
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }} | |
pulumi-backend-url: ${{ steps.pulumi-backend-url.outputs.pulumi-backend-url }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: '' | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create global cache key | |
id: global-cache-key | |
run: >- | |
echo "global-cache-key=$(hub pr show ${{ github.event.issue.number }} | |
-f %B)-${{ runner.os }}-$(/bin/date -u "+%m%d")-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create workflow run cache key | |
id: run-cache-key | |
run: >- | |
echo "run-cache-key=${{ github.run_id }}-${{ github.run_attempt }}-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
- name: List Cypress tests folders | |
id: list-cypress-folders | |
run: >- | |
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >> | |
$GITHUB_OUTPUT | |
- name: Get Pulumi backend URL | |
id: get-pulumi-backend-url | |
run: >- | |
echo "pulumi-backend-url=${{ secrets.WEBINY_PULUMI_BACKEND }}${{ | |
github.run_id }}_ddb-es" >> $GITHUB_OUTPUT | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
e2e-wby-cms-ddb-es-project-setup: | |
needs: e2e-wby-cms-ddb-es-constants | |
name: E2E (DDB-ES) - Project setup | |
outputs: | |
cypress-config: ${{ steps.save-cypress-config.outputs.cypress-config }} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-es-constants.outputs.pulumi-backend-url }} | |
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_ELASTIC_SEARCH_DOMAIN_NAME }} | |
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.ELASTIC_SEARCH_ENDPOINT }} | |
ELASTIC_SEARCH_INDEX_PREFIX: ${{ github.run_id }}_ | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::726952677045:role/GitHubActionsWebinyJs | |
aws-region: eu-central-1 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-es-constants.outputs.global-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-es-constants.outputs.run-cache-key }} | |
- name: Start Verdaccio local server | |
working-directory: checked-out-pr | |
run: >- | |
yarn add pm2 verdaccio && npx pm2 start verdaccio -- -c | |
.verdaccio.yaml | |
- name: Configure NPM to use local registry | |
run: npm config set registry http://localhost:4873 | |
- name: Set git email | |
run: git config --global user.email "[email protected]" | |
- name: Set git username | |
run: git config --global user.name "webiny-bot" | |
- name: Create ".npmrc" file in the project root, with a dummy auth token | |
working-directory: checked-out-pr | |
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc | |
- name: Version and publish to Verdaccio | |
working-directory: checked-out-pr | |
run: yarn release --type=verdaccio | |
- name: Create verdaccio-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: verdaccio-files-ddb-es | |
retention-days: 1 | |
path: |- | |
checked-out-pr/.verdaccio/ | |
checked-out-pr/.verdaccio.yaml | |
- name: Disable Webiny telemetry | |
run: > | |
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' > | |
~/.webiny/config | |
- name: Create a new Webiny project | |
run: > | |
npx create-webiny-project@local-npm new-webiny-project --tag local-npm | |
--no-interactive --assign-to-yarnrc | |
'{"npmRegistryServer":"http://localhost:4873","unsafeHttpWhitelist":["localhost"]}' | |
--template-options '{"region":"${{ env.AWS_REGION | |
}}","storageOperations":"ddb-es"}' | |
- name: Print CLI version | |
working-directory: new-webiny-project | |
run: yarn webiny --version | |
- name: Create project-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: project-files-ddb-es | |
retention-days: 1 | |
path: |- | |
new-webiny-project/ | |
!new-webiny-project/node_modules/**/* | |
!new-webiny-project/**/node_modules/**/* | |
!new-webiny-project/.yarn/cache/**/* | |
- name: Deploy Core | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/core --env dev | |
- name: Deploy API | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/api --env dev | |
- name: Deploy Admin Area | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/admin --env dev | |
- name: Deploy Website | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/website --env dev | |
- name: Create Cypress config | |
working-directory: checked-out-pr | |
run: yarn setup-cypress --projectFolder ../new-webiny-project | |
- name: Save Cypress config | |
id: save-cypress-config | |
working-directory: checked-out-pr | |
run: >- | |
echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d | |
'\t\n\r')" >> $GITHUB_OUTPUT | |
- name: Cypress - run installation wizard test | |
working-directory: checked-out-pr | |
run: >- | |
yarn cy:run --browser chrome --spec | |
"cypress/e2e/adminInstallation/**/*.cy.js" | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
e2e-wby-cms-ddb-es-cypress-tests: | |
name: >- | |
${{ matrix.cypress-folder }} (ddb-es, ${{ matrix.os }}, Node v${{ | |
matrix.node }}) | |
needs: | |
- e2e-wby-cms-ddb-es-constants | |
- e2e-wby-cms-ddb-es-project-setup | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
node: | |
- 18 | |
cypress-folder: >- | |
${{ | |
fromJson(needs.e2e-wby-cms-ddb-es-constants.outputs.cypress-folders) | |
}} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-es-constants.outputs.pulumi-backend-url }} | |
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_ELASTIC_SEARCH_DOMAIN_NAME }} | |
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.ELASTIC_SEARCH_ENDPOINT }} | |
ELASTIC_SEARCH_INDEX_PREFIX: ${{ github.run_id }}_ | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-es-constants.outputs.run-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- name: Set up Cypress config | |
working-directory: checked-out-pr | |
run: >- | |
echo '${{ | |
needs.e2e-wby-cms-ddb-es-project-setup.outputs.cypress-config }}' > | |
cypress-tests/cypress.config.ts | |
- name: Cypress - run "${{ matrix.cypress-folder }}" tests | |
timeout-minutes: 40 | |
working-directory: checked-out-pr | |
run: yarn cy:run --browser chrome --spec "${{ matrix.cypress-folder }}" | |
runs-on: ubuntu-latest | |
e2e-wby-cms-ddb-os-constants: | |
needs: checkComment | |
name: E2E (DDB-OS) - Constants | |
outputs: | |
global-cache-key: ${{ steps.global-cache-key.outputs.global-cache-key }} | |
run-cache-key: ${{ steps.run-cache-key.outputs.run-cache-key }} | |
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }} | |
pulumi-backend-url: ${{ steps.pulumi-backend-url.outputs.pulumi-backend-url }} | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: '' | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create global cache key | |
id: global-cache-key | |
run: >- | |
echo "global-cache-key=$(hub pr show ${{ github.event.issue.number }} | |
-f %B)-${{ runner.os }}-$(/bin/date -u "+%m%d")-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Create workflow run cache key | |
id: run-cache-key | |
run: >- | |
echo "run-cache-key=${{ github.run_id }}-${{ github.run_attempt }}-${{ | |
vars.RANDOM_CACHE_KEY_SUFFIX }}" >> $GITHUB_OUTPUT | |
- name: List Cypress tests folders | |
id: list-cypress-folders | |
run: >- | |
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >> | |
$GITHUB_OUTPUT | |
- name: Get Pulumi backend URL | |
id: get-pulumi-backend-url | |
run: >- | |
echo "pulumi-backend-url=${{ secrets.WEBINY_PULUMI_BACKEND }}${{ | |
github.run_id }}_ddb-os" >> $GITHUB_OUTPUT | |
runs-on: ubuntu-latest | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
e2e-wby-cms-ddb-os-project-setup: | |
needs: e2e-wby-cms-ddb-os-constants | |
name: E2E (DDB-OS) - Project setup | |
outputs: | |
cypress-config: ${{ steps.save-cypress-config.outputs.cypress-config }} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-os-constants.outputs.pulumi-backend-url }} | |
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_OPEN_SEARCH_DOMAIN_NAME }} | |
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.OPEN_SEARCH_ENDPOINT }} | |
ELASTIC_SEARCH_INDEX_PREFIX: ${{ github.run_id }}_ | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::726952677045:role/GitHubActionsWebinyJs | |
aws-region: eu-central-1 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-os-constants.outputs.global-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-os-constants.outputs.run-cache-key }} | |
- name: Start Verdaccio local server | |
working-directory: checked-out-pr | |
run: >- | |
yarn add pm2 verdaccio && npx pm2 start verdaccio -- -c | |
.verdaccio.yaml | |
- name: Configure NPM to use local registry | |
run: npm config set registry http://localhost:4873 | |
- name: Set git email | |
run: git config --global user.email "[email protected]" | |
- name: Set git username | |
run: git config --global user.name "webiny-bot" | |
- name: Create ".npmrc" file in the project root, with a dummy auth token | |
working-directory: checked-out-pr | |
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc | |
- name: Version and publish to Verdaccio | |
working-directory: checked-out-pr | |
run: yarn release --type=verdaccio | |
- name: Create verdaccio-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: verdaccio-files-ddb-os | |
retention-days: 1 | |
path: |- | |
checked-out-pr/.verdaccio/ | |
checked-out-pr/.verdaccio.yaml | |
- name: Disable Webiny telemetry | |
run: > | |
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' > | |
~/.webiny/config | |
- name: Create a new Webiny project | |
run: > | |
npx create-webiny-project@local-npm new-webiny-project --tag local-npm | |
--no-interactive --assign-to-yarnrc | |
'{"npmRegistryServer":"http://localhost:4873","unsafeHttpWhitelist":["localhost"]}' | |
--template-options '{"region":"${{ env.AWS_REGION | |
}}","storageOperations":"ddb-os"}' | |
- name: Print CLI version | |
working-directory: new-webiny-project | |
run: yarn webiny --version | |
- name: Create project-files artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: project-files-ddb-os | |
retention-days: 1 | |
path: |- | |
new-webiny-project/ | |
!new-webiny-project/node_modules/**/* | |
!new-webiny-project/**/node_modules/**/* | |
!new-webiny-project/.yarn/cache/**/* | |
- name: Deploy Core | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/core --env dev | |
- name: Deploy API | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/api --env dev | |
- name: Deploy Admin Area | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/admin --env dev | |
- name: Deploy Website | |
working-directory: new-webiny-project | |
run: yarn webiny deploy apps/website --env dev | |
- name: Create Cypress config | |
working-directory: checked-out-pr | |
run: yarn setup-cypress --projectFolder ../new-webiny-project | |
- name: Save Cypress config | |
id: save-cypress-config | |
working-directory: checked-out-pr | |
run: >- | |
echo "cypress-config=$(cat cypress-tests/cypress.config.ts | tr -d | |
'\t\n\r')" >> $GITHUB_OUTPUT | |
- name: Cypress - run installation wizard test | |
working-directory: checked-out-pr | |
run: >- | |
yarn cy:run --browser chrome --spec | |
"cypress/e2e/adminInstallation/**/*.cy.js" | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
e2e-wby-cms-ddb-os-cypress-tests: | |
name: >- | |
${{ matrix.cypress-folder }} (ddb-os, ${{ matrix.os }}, Node v${{ | |
matrix.node }}) | |
needs: | |
- e2e-wby-cms-ddb-os-constants | |
- e2e-wby-cms-ddb-os-project-setup | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
node: | |
- 18 | |
cypress-folder: >- | |
${{ | |
fromJson(needs.e2e-wby-cms-ddb-os-constants.outputs.cypress-folders) | |
}} | |
environment: next | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
CYPRESS_MAILOSAUR_API_KEY: ${{ secrets.CYPRESS_MAILOSAUR_API_KEY }} | |
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | |
PULUMI_SECRETS_PROVIDER: ${{ secrets.PULUMI_SECRETS_PROVIDER }} | |
WEBINY_PULUMI_BACKEND: ${{ needs.e2e-wby-cms-ddb-os-constants.outputs.pulumi-backend-url }} | |
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_OPEN_SEARCH_DOMAIN_NAME }} | |
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.OPEN_SEARCH_ENDPOINT }} | |
ELASTIC_SEARCH_INDEX_PREFIX: ${{ github.run_id }}_ | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/checkout@v4 | |
with: | |
path: checked-out-pr | |
- name: Install Hub Utility | |
run: sudo apt-get install -y hub | |
- name: Checkout Pull Request | |
working-directory: checked-out-pr | |
run: hub pr checkout ${{ github.event.issue.number }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.yarn/cache | |
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- uses: actions/cache@v4 | |
with: | |
path: checked-out-pr/.webiny/cached-packages | |
key: ${{ needs.e2e-wby-cms-ddb-os-constants.outputs.run-cache-key }} | |
- name: Install dependencies | |
working-directory: checked-out-pr | |
run: yarn --immutable | |
- name: Build packages | |
working-directory: checked-out-pr | |
run: yarn build:quick | |
- name: Set up Cypress config | |
working-directory: checked-out-pr | |
run: >- | |
echo '${{ | |
needs.e2e-wby-cms-ddb-os-project-setup.outputs.cypress-config }}' > | |
cypress-tests/cypress.config.ts | |
- name: Cypress - run "${{ matrix.cypress-folder }}" tests | |
timeout-minutes: 40 | |
working-directory: checked-out-pr | |
run: yarn cy:run --browser chrome --spec "${{ matrix.cypress-folder }}" | |
runs-on: ubuntu-latest |