Skip to content

merge: pull 'origin/dev' into next #28

merge: pull 'origin/dev' into next

merge: pull 'origin/dev' into next #28

Workflow file for this run

# 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: Next Branch - Push
'on':
push:
branches:
- next
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
init:
name: Init
outputs:
day: ${{ steps.get-day.outputs.day }}
ts: ${{ steps.get-timestamp.outputs.ts }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Get day of the month
id: get-day
run: >-
echo "day=$(node --eval "console.log(new Date().getDate())")" >>
$GITHUB_OUTPUT
- name: Get timestamp
id: get-timestamp
run: >-
echo "ts=$(node --eval "console.log(new Date().getTime())")" >>
$GITHUB_OUTPUT
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
build:
name: Build
needs: init
runs-on: webiny-build-packages
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: yarn-cache
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
id: global-daily-packages-cache
with:
path: .webiny/cached-packages
key: >-
${{ runner.os }}-${{ needs.init.outputs.day }}-${{
secrets.RANDOM_CACHE_KEY_SUFFIX }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build:quick
- uses: actions/cache@v4
id: packages-cache
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
codeAnalysis:
name: Static code analysis
needs:
- init
- build
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Check code formatting
run: yarn prettier:check
- name: Check dependencies
run: yarn adio
- name: Check TS configs
run: yarn check-ts-configs
- name: ESLint
run: yarn eslint
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
staticCodeAnalysisTs:
name: Static code analysis (TypeScript)
runs-on: webiny-build-packages
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages (full)
run: yarn build
- name: Check types for Cypress tests
run: yarn cy:ts
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
jestTestsNoStorage:
needs: init
name: ${{ matrix.package.cmd }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
package: >-
${{
fromJson('[{"cmd":"packages/api","id":"api"},{"cmd":"packages/api-admin-settings","id":"api-admin-settings"},{"cmd":"packages/api-authentication","id":"api-authentication"},{"cmd":"packages/api-authentication-cognito","id":"api-authentication-cognito"},{"cmd":"packages/api-dynamodb-to-elasticsearch","id":"api-dynamodb-to-elasticsearch"},{"cmd":"packages/api-headless-cms-ddb","id":"api-headless-cms-ddb"},{"cmd":"packages/api-wcp","id":"api-wcp"},{"cmd":"packages/api-websockets","id":"api-websockets"},{"cmd":"packages/app-aco","id":"app-aco"},{"cmd":"packages/app-admin","id":"app-admin"},{"cmd":"packages/cwp-template-aws","id":"cwp-template-aws"},{"cmd":"packages/data-migration","id":"data-migration"},{"cmd":"packages/db-dynamodb","id":"db-dynamodb"},{"cmd":"packages/form","id":"form"},{"cmd":"packages/handler","id":"handler"},{"cmd":"packages/handler-aws","id":"handler-aws"},{"cmd":"packages/handler-graphql","id":"handler-graphql"},{"cmd":"packages/handler-logs","id":"handler-logs"},{"cmd":"packages/ioc","id":"ioc"},{"cmd":"packages/lexical-converter","id":"lexical-converter"},{"cmd":"packages/plugins","id":"plugins"},{"cmd":"packages/pubsub","id":"pubsub"},{"cmd":"packages/react-composition","id":"react-composition"},{"cmd":"packages/react-properties","id":"react-properties"},{"cmd":"packages/react-rich-text-lexical-renderer","id":"react-rich-text-lexical-renderer"},{"cmd":"packages/utils","id":"utils"},{"cmd":"packages/validation","id":"validation"}]')
}}
runs-on: ${{ matrix.os }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build:quick
- name: Run tests
run: yarn test ${{ matrix.package.cmd }}
jestTestsDdb:
needs: init
name: ${{ matrix.package.cmd }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
package: >-
${{ fromJson('[{"cmd":"packages/api-aco
--storage=ddb","storage":"ddb","id":"api-aco_ddb"},{"cmd":"packages/api-apw
--storage=ddb","storage":"ddb","id":"api-apw_ddb"},{"cmd":"packages/api-audit-logs
--storage=ddb","storage":"ddb","id":"api-audit-logs_ddb"},{"cmd":"packages/api-file-manager
--storage=ddb","storage":"ddb","id":"api-file-manager_ddb"},{"cmd":"packages/api-form-builder
--storage=ddb","storage":"ddb","id":"api-form-builder_ddb"},{"cmd":"packages/api-headless-cms
--storage=ddb","storage":"ddb","id":"api-headless-cms_ddb"},{"cmd":"packages/api-i18n
--storage=ddb","storage":"ddb","id":"api-i18n_ddb"},{"cmd":"packages/api-mailer
--storage=ddb","storage":"ddb","id":"api-mailer_ddb"},{"cmd":"packages/api-page-builder
--storage=ddb","storage":"ddb","id":"api-page-builder_ddb"},{"cmd":"packages/api-page-builder-aco
--storage=ddb","storage":"ddb","id":"api-page-builder-aco_ddb"},{"cmd":"packages/api-page-builder-import-export
--storage=ddb","storage":"ddb","id":"api-page-builder-import-export_ddb"},{"cmd":"packages/api-prerendering-service
--storage=ddb","storage":"ddb","id":"api-prerendering-service_ddb"},{"cmd":"packages/api-security
--storage=ddb","storage":"ddb","id":"api-security_ddb"},{"cmd":"packages/api-security-cognito
--storage=ddb","storage":"ddb","id":"api-security-cognito_ddb"},{"cmd":"packages/api-tenancy
--storage=ddb","storage":"ddb","id":"api-tenancy_ddb"},{"cmd":"packages/api-tenant-manager
--storage=ddb","storage":"ddb","id":"api-tenant-manager_ddb"},{"cmd":"packages/tasks
--storage=ddb","storage":"ddb","id":"tasks_ddb"}]') }}
runs-on: ${{ matrix.os }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build:quick
- name: Run tests
run: yarn test ${{ matrix.package.cmd }}
jestTestsDdbEs:
needs: init
name: ${{ matrix.package.cmd }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
package: >-
${{ fromJson('[{"cmd":"packages/api-aco
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-aco_ddb-es_ddb"},{"cmd":"packages/api-audit-logs
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-audit-logs_ddb-es_ddb"},{"cmd":"packages/api-elasticsearch","storage":["ddb-es","ddb-os"],"id":"api-elasticsearch"},{"cmd":"packages/api-elasticsearch-tasks
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-elasticsearch-tasks_ddb-es_ddb"},{"cmd":"packages/api-file-manager
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-file-manager_ddb-es_ddb"},{"cmd":"packages/api-form-builder
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-form-builder_ddb-es_ddb"},{"cmd":"packages/api-form-builder-so-ddb-es
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-form-builder-so-ddb-es_ddb-es_ddb"},{"cmd":"packages/api-headless-cms
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-headless-cms_ddb-es_ddb"},{"cmd":"packages/api-headless-cms-ddb-es
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-headless-cms-ddb-es_ddb-es_ddb"},{"cmd":"packages/api-mailer
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-mailer_ddb-es_ddb"},{"cmd":"packages/api-page-builder
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-page-builder_ddb-es_ddb"},{"cmd":"packages/api-page-builder-aco
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-page-builder-aco_ddb-es_ddb"},{"cmd":"packages/api-page-builder-so-ddb-es
--storage=ddb-es,ddb","storage":"ddb-es","id":"api-page-builder-so-ddb-es_ddb-es_ddb"},{"cmd":"packages/migrations","storage":["ddb-es","ddb-os"],"id":"migrations"},{"cmd":"packages/tasks
--storage=ddb-es,ddb","storage":"ddb-es","id":"tasks_ddb-es_ddb"}]')
}}
runs-on: ${{ matrix.os }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_ELASTIC_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.ELASTIC_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ matrix.package.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
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build:quick
- name: Run tests
run: yarn test ${{ matrix.package.cmd }}
permissions:
id-token: write
if: needs.init.outputs.is-fork-pr != 'true'
jestTestsDdbOs:
needs: init
name: ${{ matrix.package.cmd }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
package: >-
${{ fromJson('[{"cmd":"packages/api-aco
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-aco_ddb-os_ddb"},{"cmd":"packages/api-audit-logs
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-audit-logs_ddb-os_ddb"},{"cmd":"packages/api-elasticsearch","storage":["ddb-es","ddb-os"],"id":"api-elasticsearch"},{"cmd":"packages/api-elasticsearch-tasks
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-elasticsearch-tasks_ddb-os_ddb"},{"cmd":"packages/api-file-manager
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-file-manager_ddb-os_ddb"},{"cmd":"packages/api-form-builder
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-form-builder_ddb-os_ddb"},{"cmd":"packages/api-form-builder-so-ddb-es
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-form-builder-so-ddb-es_ddb-os_ddb"},{"cmd":"packages/api-headless-cms
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-headless-cms_ddb-os_ddb"},{"cmd":"packages/api-headless-cms-ddb-es
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-headless-cms-ddb-es_ddb-os_ddb"},{"cmd":"packages/api-mailer
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-mailer_ddb-os_ddb"},{"cmd":"packages/api-page-builder
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-page-builder_ddb-os_ddb"},{"cmd":"packages/api-page-builder-aco
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-page-builder-aco_ddb-os_ddb"},{"cmd":"packages/api-page-builder-so-ddb-es
--storage=ddb-os,ddb","storage":"ddb-os","id":"api-page-builder-so-ddb-es_ddb-os_ddb"},{"cmd":"packages/migrations","storage":["ddb-es","ddb-os"],"id":"migrations"},{"cmd":"packages/tasks
--storage=ddb-os,ddb","storage":"ddb-os","id":"tasks_ddb-os_ddb"}]')
}}
runs-on: ${{ matrix.os }}
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_OPEN_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.OPEN_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ matrix.package.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
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build:quick
- name: Run tests
run: yarn test ${{ matrix.package.cmd }}
permissions:
id-token: write
if: needs.init.outputs.is-fork-pr != 'true'
e2eTestsDdb-init:
name: E2E (DDB) - Init
outputs:
day: ${{ steps.get-day.outputs.day }}
ts: ${{ steps.get-timestamp.outputs.ts }}
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Get day of the month
id: get-day
run: >-
echo "day=$(node --eval "console.log(new Date().getDate())")" >>
$GITHUB_OUTPUT
- name: Get timestamp
id: get-timestamp
run: >-
echo "ts=$(node --eval "console.log(new Date().getTime())")" >>
$GITHUB_OUTPUT
- name: List Cypress tests folders
id: list-cypress-folders
run: >-
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >>
$GITHUB_OUTPUT
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-setup:
needs: e2eTestsDdb-init
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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-init.outputs.ts }}_ddb
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:
fetch-depth: 0
path: dev
- uses: actions/cache@v4
id: yarn-cache
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- uses: actions/cache@v4
id: cached-packages
with:
path: dev/.webiny/cached-packages
key: >-
${{ runner.os }}-${{ needs.e2eTestsDdb-init.outputs.day }}-${{
secrets.RANDOM_CACHE_KEY_SUFFIX }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- uses: actions/cache@v4
id: packages-cache
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-init.outputs.ts }}
- name: Start Verdaccio local server
working-directory: dev
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: dev
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc
- name: Version and publish to Verdaccio
working-directory: dev
run: yarn release --type=verdaccio
- name: Create verdaccio-files artifact
uses: actions/upload-artifact@v4
with:
name: verdaccio-files-ddb
retention-days: 1
path: |
dev/.verdaccio/
dev/.verdaccio.yaml
- name: Create directory
run: mkdir xyz
- name: Disable Webiny telemetry
run: >
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' >
~/.webiny/config
- name: Create a new Webiny project
working-directory: xyz
run: >
npx create-webiny-project@local-npm test-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: xyz/test-project
run: yarn webiny --version
- name: Create project-files artifact
uses: actions/upload-artifact@v4
with:
name: project-files-ddb
retention-days: 1
path: |
xyz/test-project/
!xyz/test-project/node_modules/**/*
!xyz/test-project/**/node_modules/**/*
!xyz/test-project/.yarn/cache/**/*
- name: Deploy Core
working-directory: xyz/test-project
run: yarn webiny deploy apps/core --env dev
- name: Deploy API
working-directory: xyz/test-project
run: yarn webiny deploy apps/api --env dev
- name: Deploy Admin Area
working-directory: xyz/test-project
run: yarn webiny deploy apps/admin --env dev
- name: Deploy Website
working-directory: xyz/test-project
run: yarn webiny deploy apps/website --env dev
- name: Create Cypress config
working-directory: dev
run: yarn setup-cypress --projectFolder ../xyz/test-project
- name: Save Cypress config
id: save-cypress-config
working-directory: dev
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: dev/cypress-tests
run: >-
yarn cypress run --browser chrome --spec
"cypress/e2e/adminInstallation/**/*.cy.js"
runs-on: ubuntu-latest
permissions:
id-token: write
e2eTestsDdb-cypress:
name: >-
${{ matrix.cypress-folder }} (ddb, ${{ matrix.os }}, Node v${{ matrix.node
}})
needs:
- e2eTestsDdb-init
- e2eTestsDdb-setup
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
cypress-folder: ${{ fromJson(needs.e2eTestsDdb-init.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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-init.outputs.ts }}_ddb
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
with:
path: dev
- uses: actions/cache@v4
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-init.outputs.ts }}
- uses: actions/cache@v4
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- name: Set up Cypress config
working-directory: dev
run: >-
echo '${{ needs.e2eTestsDdb-setup.outputs.cypress-config }}' >
cypress-tests/cypress.config.ts
- name: Cypress - run "${{ matrix.cypress-folder }}" tests
working-directory: dev/cypress-tests
timeout-minutes: 40
run: >-
yarn cypress run --browser chrome --spec "${{ matrix.cypress-folder
}}"
runs-on: ubuntu-latest
e2eTestsDdb-es-init:
name: E2E (DDB-ES) - Init
outputs:
day: ${{ steps.get-day.outputs.day }}
ts: ${{ steps.get-timestamp.outputs.ts }}
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Get day of the month
id: get-day
run: >-
echo "day=$(node --eval "console.log(new Date().getDate())")" >>
$GITHUB_OUTPUT
- name: Get timestamp
id: get-timestamp
run: >-
echo "ts=$(node --eval "console.log(new Date().getTime())")" >>
$GITHUB_OUTPUT
- name: List Cypress tests folders
id: list-cypress-folders
run: >-
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >>
$GITHUB_OUTPUT
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-es-setup:
needs: e2eTestsDdb-es-init
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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-es-init.outputs.ts }}_ddb
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_ELASTIC_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.ELASTIC_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ needs.e2eTestsDdb-es-init.outputs.ts }}_
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:
fetch-depth: 0
path: dev
- uses: actions/cache@v4
id: yarn-cache
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- uses: actions/cache@v4
id: cached-packages
with:
path: dev/.webiny/cached-packages
key: >-
${{ runner.os }}-${{ needs.e2eTestsDdb-es-init.outputs.day }}-${{
secrets.RANDOM_CACHE_KEY_SUFFIX }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- uses: actions/cache@v4
id: packages-cache
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-es-init.outputs.ts }}
- name: Start Verdaccio local server
working-directory: dev
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: dev
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc
- name: Version and publish to Verdaccio
working-directory: dev
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: |
dev/.verdaccio/
dev/.verdaccio.yaml
- name: Create directory
run: mkdir xyz
- name: Disable Webiny telemetry
run: >
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' >
~/.webiny/config
- name: Create a new Webiny project
working-directory: xyz
run: >
npx create-webiny-project@local-npm test-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: xyz/test-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: |
xyz/test-project/
!xyz/test-project/node_modules/**/*
!xyz/test-project/**/node_modules/**/*
!xyz/test-project/.yarn/cache/**/*
- name: Deploy Core
working-directory: xyz/test-project
run: yarn webiny deploy apps/core --env dev
- name: Deploy API
working-directory: xyz/test-project
run: yarn webiny deploy apps/api --env dev
- name: Deploy Admin Area
working-directory: xyz/test-project
run: yarn webiny deploy apps/admin --env dev
- name: Deploy Website
working-directory: xyz/test-project
run: yarn webiny deploy apps/website --env dev
- name: Create Cypress config
working-directory: dev
run: yarn setup-cypress --projectFolder ../xyz/test-project
- name: Save Cypress config
id: save-cypress-config
working-directory: dev
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: dev/cypress-tests
run: >-
yarn cypress run --browser chrome --spec
"cypress/e2e/adminInstallation/**/*.cy.js"
runs-on: ubuntu-latest
permissions:
id-token: write
e2eTestsDdb-es-cypress:
name: >-
${{ matrix.cypress-folder }} (ddb-es, ${{ matrix.os }}, Node v${{
matrix.node }})
needs:
- e2eTestsDdb-es-init
- e2eTestsDdb-es-setup
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
cypress-folder: ${{ fromJson(needs.e2eTestsDdb-es-init.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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-es-init.outputs.ts }}_ddb
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_ELASTIC_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.ELASTIC_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ needs.e2eTestsDdb-es-init.outputs.ts }}_
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
with:
path: dev
- uses: actions/cache@v4
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-es-init.outputs.ts }}
- uses: actions/cache@v4
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- name: Set up Cypress config
working-directory: dev
run: >-
echo '${{ needs.e2eTestsDdb-es-setup.outputs.cypress-config }}' >
cypress-tests/cypress.config.ts
- name: Cypress - run "${{ matrix.cypress-folder }}" tests
working-directory: dev/cypress-tests
timeout-minutes: 40
run: >-
yarn cypress run --browser chrome --spec "${{ matrix.cypress-folder
}}"
runs-on: ubuntu-latest
e2eTestsDdb-os-init:
name: E2E (DDB-OS) - Init
outputs:
day: ${{ steps.get-day.outputs.day }}
ts: ${{ steps.get-timestamp.outputs.ts }}
cypress-folders: ${{ steps.list-cypress-folders.outputs.cypress-folders }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Get day of the month
id: get-day
run: >-
echo "day=$(node --eval "console.log(new Date().getDate())")" >>
$GITHUB_OUTPUT
- name: Get timestamp
id: get-timestamp
run: >-
echo "ts=$(node --eval "console.log(new Date().getTime())")" >>
$GITHUB_OUTPUT
- name: List Cypress tests folders
id: list-cypress-folders
run: >-
echo "cypress-folders=$(node scripts/listCypressTestsFolders.js)" >>
$GITHUB_OUTPUT
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
e2eTestsDdb-os-setup:
needs: e2eTestsDdb-os-init
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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-os-init.outputs.ts }}_ddb
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_OPEN_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.OPEN_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ needs.e2eTestsDdb-os-init.outputs.ts }}_
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:
fetch-depth: 0
path: dev
- uses: actions/cache@v4
id: yarn-cache
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- uses: actions/cache@v4
id: cached-packages
with:
path: dev/.webiny/cached-packages
key: >-
${{ runner.os }}-${{ needs.e2eTestsDdb-os-init.outputs.day }}-${{
secrets.RANDOM_CACHE_KEY_SUFFIX }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- uses: actions/cache@v4
id: packages-cache
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-os-init.outputs.ts }}
- name: Start Verdaccio local server
working-directory: dev
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: dev
run: echo '//localhost:4873/:_authToken="dummy-auth-token"' > .npmrc
- name: Version and publish to Verdaccio
working-directory: dev
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: |
dev/.verdaccio/
dev/.verdaccio.yaml
- name: Create directory
run: mkdir xyz
- name: Disable Webiny telemetry
run: >
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' >
~/.webiny/config
- name: Create a new Webiny project
working-directory: xyz
run: >
npx create-webiny-project@local-npm test-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: xyz/test-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: |
xyz/test-project/
!xyz/test-project/node_modules/**/*
!xyz/test-project/**/node_modules/**/*
!xyz/test-project/.yarn/cache/**/*
- name: Deploy Core
working-directory: xyz/test-project
run: yarn webiny deploy apps/core --env dev
- name: Deploy API
working-directory: xyz/test-project
run: yarn webiny deploy apps/api --env dev
- name: Deploy Admin Area
working-directory: xyz/test-project
run: yarn webiny deploy apps/admin --env dev
- name: Deploy Website
working-directory: xyz/test-project
run: yarn webiny deploy apps/website --env dev
- name: Create Cypress config
working-directory: dev
run: yarn setup-cypress --projectFolder ../xyz/test-project
- name: Save Cypress config
id: save-cypress-config
working-directory: dev
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: dev/cypress-tests
run: >-
yarn cypress run --browser chrome --spec
"cypress/e2e/adminInstallation/**/*.cy.js"
runs-on: ubuntu-latest
permissions:
id-token: write
e2eTestsDdb-os-cypress:
name: >-
${{ matrix.cypress-folder }} (ddb-os, ${{ matrix.os }}, Node v${{
matrix.node }})
needs:
- e2eTestsDdb-os-init
- e2eTestsDdb-os-setup
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- 18
cypress-folder: ${{ fromJson(needs.e2eTestsDdb-os-init.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: >-
${{ secrets.WEBINY_PULUMI_BACKEND }}${{
needs.e2eTestsDdb-os-init.outputs.ts }}_ddb
AWS_ELASTIC_SEARCH_DOMAIN_NAME: ${{ secrets.AWS_OPEN_SEARCH_DOMAIN_NAME }}
ELASTIC_SEARCH_ENDPOINT: ${{ secrets.OPEN_SEARCH_ENDPOINT }}
ELASTIC_SEARCH_INDEX_PREFIX: ${{ needs.e2eTestsDdb-os-init.outputs.ts }}_
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
with:
path: dev
- uses: actions/cache@v4
with:
path: dev/.webiny/cached-packages
key: packages-cache-${{ needs.e2eTestsDdb-os-init.outputs.ts }}
- uses: actions/cache@v4
with:
path: dev/.yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('dev/**/yarn.lock') }}
- name: Install dependencies
working-directory: dev
run: yarn --immutable
- name: Build packages
working-directory: dev
run: yarn build:quick
- name: Set up Cypress config
working-directory: dev
run: >-
echo '${{ needs.e2eTestsDdb-os-setup.outputs.cypress-config }}' >
cypress-tests/cypress.config.ts
- name: Cypress - run "${{ matrix.cypress-folder }}" tests
working-directory: dev/cypress-tests
timeout-minutes: 40
run: >-
yarn cypress run --browser chrome --spec "${{ matrix.cypress-folder
}}"
runs-on: ubuntu-latest
npmReleaseUnstable:
needs:
- init
- codeAnalysis
- jestTestsNoStorage
- jestTestsDdb
- jestTestsDdbEs
- jestTestsDdbOs
- e2eTestsDdb-cypress
- e2eTestsDdb-es-cypress
- e2eTestsDdb-os-cypress
name: NPM release ("unstable" tag)
environment: release
env:
NODE_OPTIONS: '--max_old_space_size=4096'
YARN_ENABLE_IMMUTABLE_INSTALLS: false
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: .yarn/cache
key: yarn-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v4
with:
path: .webiny/cached-packages
key: packages-cache-${{ needs.init.outputs.ts }}
- name: Install dependencies
run: yarn --immutable
- name: Build packages
run: yarn build
- name: Create ".npmrc" file in the project root
run: echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
- name: Set git info
run: |
git config --global user.email "[email protected]"
git config --global user.name "webiny-bot"
- name: Version and publish to NPM
run: yarn release --type=unstable
runs-on: ubuntu-latest