Setup the comparisons for the ossd PRs #1891
Workflow file for this run
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
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
name: ci-default | |
env: | |
# CI variables | |
DOCKER_PLATFORM: "amd64" | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
# Frontend variables | |
NODE_ENV: ${{ vars.NODE_ENV }} | |
PLASMIC_PROJECT_ID: ${{ vars.PLASMIC_PROJECT_ID }} | |
PLASMIC_PROJECT_API_TOKEN: ${{ vars.PLASMIC_PROJECT_API_TOKEN }} | |
NEXT_PUBLIC_DOMAIN: ${{ vars.NEXT_PUBLIC_DOMAIN }} | |
NEXT_PUBLIC_DB_GRAPHQL_URL: ${{ vars.NEXT_PUBLIC_DB_GRAPHQL_URL }} | |
OSO_API_KEY: ${{ secrets.OSO_API_KEY }} | |
NEXT_PUBLIC_ALGOLIA_APPLICATION_ID: ${{ vars.NEXT_PUBLIC_ALGOLIA_APPLICATION_ID }} | |
NEXT_PUBLIC_ALGOLIA_API_KEY: ${{ secrets.NEXT_PUBLIC_ALGOLIA_API_KEY }} | |
NEXT_PUBLIC_ALGOLIA_INDEX: ${{ vars.NEXT_PUBLIC_ALGOLIA_INDEX }} | |
NEXT_PUBLIC_FEEDBACK_FARM_ID: ${{ vars.NEXT_PUBLIC_FEEDBACK_FARM_ID }} | |
GOOGLE_TEST_DUMMY_CREDENTIALS_JSON: ${{ vars.GOOGLE_TEST_DUMMY_CREDENTIALS_JSON }} | |
# Docs variables | |
DOCS_URL: ${{ vars.DOCS_URL }} | |
DOCS_ALGOLIA_APP_ID: ${{ vars.DOCS_ALGOLIA_APP_ID }} | |
DOCS_ALGOLIA_API_KEY: ${{ secrets.DOCS_ALGOLIA_API_KEY }} | |
DOCS_ALGOLIA_INDEX: ${{ vars.DOCS_ALGOLIA_INDEX }} | |
DOCS_SEGMENT_WRITE_KEY: ${{ secrets.DOCS_SEGMENT_WRITE_KEY }} | |
# Indexer variables | |
X_GITHUB_GRAPHQL_API: ${{ vars.X_GITHUB_GRAPHQL_API }} | |
X_GITHUB_TOKEN: ${{ secrets.X_GITHUB_TOKEN }} | |
GOOGLE_PROJECT_ID: "opensource-observer" | |
# should not be set to a legitimate value for testing. This will use up API | |
# quota otherwise | |
DUNE_API_KEY: "none" | |
# Trigger the workflow when: | |
on: | |
# A push occurs to one of the matched branches. | |
push: | |
branches: | |
- main | |
# Or when a pull request event occurs for a pull request against one of the | |
# matched branches. | |
pull_request: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
merge_group: | |
# Cancel in progress jobs on new pushes. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-and-test: | |
# NOTE: This name appears in GitHub's Checks API. | |
name: test | |
environment: testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
# Check out pull request's HEAD commit instead of the merge commit to | |
# prevent gitlint from failing due to too long commit message titles, | |
# e.g. "Merge 3e621938d65caaa67f8e35d145335d889d470fc8 into 19a39b2f66cd7a165082d1486b2f1eb36ec2354a". | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Fetch all history so gitlint can check the relevant commits. | |
fetch-depth: "0" | |
- name: Load public vars | |
run: | | |
bash .github/scripts/load-public-vars.sh $GITHUB_ENV \ | |
NODE_ENV PLASMIC_PROJECT_ID \ | |
PLASMIC_PROJECT_API_TOKEN \ | |
NEXT_PUBLIC_DOMAIN NEXT_PUBLIC_DB_GRAPHQL_URL \ | |
NEXT_PUBLIC_ALGOLIA_APPLICATION_ID \ | |
NEXT_PUBLIC_ALGOLIA_API_KEY \ | |
NEXT_PUBLIC_ALGOLIA_INDEX \ | |
NEXT_PUBLIC_FEEDBACK_FARM_ID \ | |
GOOGLE_TEST_DUMMY_CREDENTIALS_JSON \ | |
X_GITHUB_GRAPHQL_API \ | |
GOOGLE_PROJECT_ID \ | |
PUBLIC_VARS_TEST | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
args: [--frozen-lockfile, --strict-peer-dependencies] | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
cache: "pnpm" | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: 3.12 | |
poetry-version: 1.7.1 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-87bc53fc6c874bd4c92d97ed180b949e3a36d78c | |
- name: Authenticate to google with a test-dummy user | |
uses: 'google-github-actions/auth@v2' | |
with: | |
credentials_json: '${{ env.GOOGLE_TEST_DUMMY_CREDENTIALS_JSON }}' | |
create_credentials_file: true | |
- name: Setup dbt profile | |
run: | | |
bash .github/scripts/create-dbt-profile.sh ${GOOGLE_APPLICATION_CREDENTIALS} | |
- name: Run supabase local | |
run: | | |
bash .github/scripts/run-supabase-local.sh apps/frontend | |
- name: Check if algolia is empty, set the variable to some dummy value if it is | |
shell: bash | |
run: | | |
echo "NEXT_PUBLIC_ALGOLIA_API_KEY=${NEXT_PUBLIC_ALGOLIA_API_KEY:-xxxx}" >> "$GITHUB_ENV" | |
- name: Build | |
run: | | |
pnpm build | |
# Always run this step so that all linting errors can be seen at once. | |
if: always() | |
- name: Lint | |
run: | | |
pnpm lint | |
# Always run this step so that all linting errors can be seen at once. | |
if: always() | |
# Temporarily include this separately. Eventually this should all be part of lint | |
- name: Lint SQL | |
run: | | |
poetry run sqlfluff lint --dialect bigquery ./warehouse/dbt/models | |
if: always() | |
- name: Test | |
run: | | |
pnpm test | |
# Always run this step so that all linting errors can be seen at once. | |
if: always() |