-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: get build caches in order [no ci]
- Loading branch information
Showing
1 changed file
with
296 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,296 @@ | ||
# 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 Test | ||
'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=${{ github.base_ref }}-${{ runner.os | ||
}}-$(/bin/date -u "+%m%d")-${{ vars.RANDOM_CACHE_KEY_SUFFIX }}" >> | ||
$GITHUB_OUTPUT | ||
- 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: >- | ||
${{ secrets.WEBINY_PULUMI_BACKEND }}${{ | ||
needs.e2e-wby-cms-ddb-constants.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: | ||
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.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.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: | | ||
dev/.verdaccio/ | ||
dev/.verdaccio.yaml | ||
- name: Disable Webiny telemetry | ||
run: > | ||
mkdir ~/.webiny && echo '{ "id": "ci", "telemetry": false }' > | ||
~/.webiny/config | ||
- name: Create directory | ||
run: mkdir npx-cwp | ||
- name: Create a new Webiny project | ||
working-directory: npx-cwp | ||
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: npx-cwp/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: |- | ||
npx-cwp/new-webiny-project/ | ||
!npx-cwp/new-webiny-project/node_modules/**/* | ||
!npx-cwp/new-webiny-project/**/node_modules/**/* | ||
!npx-cwp/new-webiny-project/.yarn/cache/**/* | ||
- name: Deploy Core | ||
working-directory: npx-cwp/new-webiny-project | ||
run: yarn webiny deploy apps/core --env dev | ||
- name: Deploy API | ||
working-directory: npx-cwp/new-webiny-project | ||
run: yarn webiny deploy apps/api --env dev | ||
- name: Deploy Admin Area | ||
working-directory: npx-cwp/new-webiny-project | ||
run: yarn webiny deploy apps/admin --env dev | ||
- name: Deploy Website | ||
working-directory: npx-cwp/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 ../npx-cwp/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: >- | ||
${{ secrets.WEBINY_PULUMI_BACKEND }}${{ | ||
needs.e2e-wby-cms-ddb-constants.outputs.ts }}_ddb | ||
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.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 | ||
run: yarn cy:run --browser chrome --spec "${{ matrix.cypress-folder }}" | ||
runs-on: ubuntu-latest |