Skip to content

fix(snack-content): mark expo router modules as bundled #784

fix(snack-content): mark expo router modules as bundled

fix(snack-content): mark expo router modules as bundled #784

Workflow file for this run

name: Website
defaults:
run:
working-directory: website
concurrency:
group: website-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
deploy:
description: What environment should be deployed
type: choice
default: no-deploy
options:
- no-deploy
- staging
- production
pull_request:
paths:
- .github/actions/setup-google-cloud/**
- .github/actions/setup-secrets/**
- .github/actions/setup-website/**
- .github/workflows/website.yml
- website/**
- packages/snack-content/**
- packages/snack-sdk/**
- .eslint*
- .prettier*
- yarn.lock
push:
branches: [main]
paths:
- .github/actions/setup-google-cloud/**
- .github/actions/setup-secrets/**
- .github/actions/setup-website/**
- .github/workflows/website.yml
- website/**
- packages/snack-content/**
- packages/snack-sdk/**
- .eslint*
- .prettier*
- yarn.lock
jobs:
review:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup website
uses: ./.github/actions/setup-website
- name: 🚨 Lint website
run: yarn lint --max-warnings 0
- name: πŸ§ͺ Unit test website
run: yarn test --ci --maxWorkers 1
build:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup secrets
uses: ./.github/actions/setup-secrets
with:
git-crypt-key: ${{ secrets.GIT_CRYPT_KEY }}
- name: πŸ— Setup Google Cloud SDK
uses: ./.github/actions/setup-google-cloud
with:
project-id: exponentjs
project-zone: us-central1
project-cluster: general-central
service-key: ${{ secrets.GCLOUD_KEY }}
- name: πŸ›  Build website
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json
working-directory: ./
check-config:
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'expo/snack' }}
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup secrets
uses: ./.github/actions/setup-secrets
with:
git-crypt-key: ${{ secrets.GIT_CRYPT_KEY }}
- name: πŸ— Setup Google Cloud SDK
uses: ./.github/actions/setup-google-cloud
- name: Check staging config
run: kustomize build deploy/staging
- name: Check production config
run: kustomize build deploy/production
deploy-staging:
if: ${{ (github.event.inputs.deploy == 'staging' && github.event_name != 'pull_request') || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
needs: review
runs-on: ubuntu-latest
environment:
name: website-staging
url: https://staging-snack.expo.dev
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup secrets
uses: ./.github/actions/setup-secrets
with:
git-crypt-key: ${{ secrets.GIT_CRYPT_KEY }}
- name: πŸ— Setup Google Cloud SDK
uses: ./.github/actions/setup-google-cloud
with:
project-id: exponentjs
project-zone: us-central1
project-cluster: general-central
service-key: ${{ secrets.GCLOUD_KEY }}
- name: πŸ›  Build website
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json
working-directory: ./
env:
SKAFFOLD_PUSH_IMAGE: 'true'
- name: 🧹 Dry-run prune docker image
run: ./bin/prune-gcr snack --dry-run
working-directory: ./
- name: πŸ“‹ Add change cause
run: kustomize edit add annotation kubernetes.io/change-cause:"Github Actions deploying $GITHUB_SHA at $(date)"
working-directory: website/deploy/staging
- name: πŸš€ Deploy website
run: skaffold deploy --filename website/skaffold.yaml --status-check --build-artifacts website/build.json
working-directory: ./
env:
SKAFFOLD_PUSH_IMAGE: 'true'
- name: πŸ’¬ Notify Slack
uses: 8398a7/action-slack@v3
if: always()
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_SNACK }}
with:
channel: '#snack'
status: ${{ job.status }}
author_name: Deploy Website to Staging
fields: message,commit,author,job,took
deploy-production:
if: ${{ github.event.inputs.deploy == 'production' && github.ref == 'refs/heads/main' }}
needs: review
runs-on: ubuntu-latest
environment:
name: website-production
url: https://snack.expo.dev
steps:
- name: πŸ— Setup repository
uses: actions/checkout@v3
- name: πŸ— Setup secrets
uses: ./.github/actions/setup-secrets
with:
git-crypt-key: ${{ secrets.GIT_CRYPT_KEY }}
- name: πŸ— Setup Google Cloud SDK
uses: ./.github/actions/setup-google-cloud
with:
project-id: exponentjs
project-zone: us-central1
project-cluster: general-central
service-key: ${{ secrets.GCLOUD_KEY }}
- name: πŸ›  Build website
run: skaffold build --filename website/skaffold.yaml --file-output website/build.json
working-directory: ./
env:
ENVIRONMENT: production
SKAFFOLD_PUSH_IMAGE: 'true'
- name: πŸ“‹ Add change cause
run: kustomize edit add annotation kubernetes.io/change-cause:"Github Actions deploying $GITHUB_SHA at $(date)"
working-directory: website/deploy/production
- name: πŸš€ Deploy website
run: skaffold deploy --filename website/skaffold.yaml --status-check --build-artifacts website/build.json
working-directory: ./
env:
ENVIRONMENT: production
SKAFFOLD_PUSH_IMAGE: 'true'
- name: 🧹 Prune docker image
if: ${{ success() }}
run: ./bin/prune-gcr snack
working-directory: ./
- name: πŸ’¬ Notify Slack
uses: 8398a7/action-slack@v3
if: ${{ always() }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_SNACK }}
with:
channel: '#snack'
status: ${{ job.status }}
author_name: Deploy Website to Production
fields: message,commit,author,job,took