chore(deps): update dependency happy-dom to v13.3.4 #810
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
name: Verify & Build | |
on: | |
push: | |
branches: [ main, alpha, beta ] | |
env: | |
LEFTHOOK: 0 | |
jobs: | |
verify: | |
uses: meza/shared-github-workflows/.github/workflows/default-node-npm-ci.yml@main | |
secrets: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
command: "install --no-audit --no-fund" | |
node-version: "latest" | |
junit-report-path: "reports/junit.xml" | |
cobertura-report-path: "reports/**/cobertura-coverage.xml" | |
build: | |
environment: ${{ github.ref_name == 'main' && 'Production' || 'Staging' }} | |
runs-on: 'ubuntu-latest' | |
needs: [ verify ] | |
if: needs.verify.outputs.new-release-published == 'true' | |
steps: | |
- name: ⏬ Checkout | |
uses: actions/checkout@v3 | |
- name: 🔧 Set up node | |
uses: meza/action-setup-node-npm@main | |
with: | |
command: "install --no-audit --no-fund" | |
node-version: latest | |
cache-name: ${{ needs.verify.outputs.cache-name }} | |
- name: 🔂 CDK Cache | |
uses: pat-s/[email protected] | |
if: always() | |
env: | |
cache-name: cdk-${{ github.ref_name }} | |
with: | |
path: ./cdk.out | |
key: cdk-${{ github.ref_name }}-${{ hashFiles('cdk.out/manifest.json') }} | |
- name: 🔢 Set version | |
run: npm version --no-git-tag-version ${{ needs.verify.outputs.new-release-version }} | |
- name: 🔨 Build | |
run: npm run build -- --sourcemap | |
env: | |
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }} | |
AUTH0_CLIENT_ID: ${{ secrets.AUTH0_CLIENT_ID }} | |
AUTH0_CLIENT_SECRET: ${{ secrets.AUTH0_CLIENT_SECRET }} | |
NODE_ENV: ${{ env.ARC_ENV }} | |
GOOGLE_ANALYTICS_ID: ${{ vars.GOOGLE_ANALYTICS_ID }} | |
SPLIT_SERVER_TOKEN: ${{ secrets.SPLIT_SERVER_TOKEN }} | |
SESSION_SECRET: ${{ secrets.SESSION_SECRET }} | |
HOTJAR_ID: ${{ vars.HOTJAR_ID }} | |
POSTHOG_TOKEN: ${{ vars.POSTHOG_TOKEN }} | |
POSTHOG_API: ${{ vars.POSTHOG_API }} | |
COOKIEYES_TOKEN: ${{ vars.COOKIEYES_TOKEN }} | |
I18N_DEBUG: ${{ env.ARC_ENV == 'production' && 'false' || 'true' }} | |
SPLIT_DEBUG: ${{ env.ARC_ENV == 'production' && 'false' || 'true' }} | |
SENTRY_DSN: ${{ vars.SENTRY_DSN }} | |
- name: Sentry Sourcemaps | |
run: npx sentry-upload-sourcemaps --release ${{ needs.verify.outputs.new-release-version }} | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
- name: Remove Sourcemaps from the deployment | |
run: rm -rf ./public/**/*.map ./build/**/*.map | |
- name: 📦 Deploy ${{ github.ref_name }} | |
run: npx cdk deploy remix-trance-stack-production -O deployment.result.json --require-approval never --context environmentName=${{ github.ref_name }} --context domainName=${{ vars.AWS_DOMAIN_NAME }} --context certificateArn=${{ secrets.AWS_CERT_ARN }} --context hostedZoneName=${{ vars.AWS_HOSTED_ZONE_NAME }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
- name: 🚀 Github Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: npm run release |