Merge branch 'master' into feat/9112/update-activity-library-card #177
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
name: Test | |
on: | |
push: | |
branches-ignore: | |
- "release-please--**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
PARABOL_BUILD_ENV_PATH: docker/parabol-ubi/docker-build/environments/pipeline | |
jobs: | |
test: | |
runs-on: ubuntu-8cores | |
permissions: | |
contents: "read" | |
id-token: "write" | |
services: | |
postgres: | |
image: postgres:15.4 | |
# This env variables must be the same in the file PARABOL_BUILD_ENV_PATH | |
env: | |
POSTGRES_PASSWORD: "temppassword" | |
POSTGRES_USER: "tempuser" | |
POSTGRES_DB: "tempdb" | |
ports: | |
- 5432:5432 | |
rethinkdb: | |
image: rethinkdb:2.4.2 | |
ports: | |
- 8080:8080 | |
- 28015:28015 | |
- 29015:29015 | |
redis: | |
image: redis:7.0-alpine | |
ports: | |
- 6379:6379 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: package.json | |
# Caching yarn dir & running yarn install is too slow | |
# Instead, we aggressively cache node_modules below to avoid calling install | |
- name: Setup environment variables | |
run: | | |
ACTION_VERSION=$(grep '"version":' package.json | cut -d\" -f4) | |
echo ACTION_VERSION=$ACTION_VERSION >> $GITHUB_ENV | |
echo ACTION_VERSION=$ACTION_VERSION | |
NODE_VERSION=$(jq -r -j '.engines.node|ltrimstr("^")' package.json) | |
echo NODE_VERSION=$NODE_VERSION >> $GITHUB_ENV | |
echo NODE_VERSION=$NODE_VERSION | |
PLAYWRIGHT_VERSION=$(yarn list @playwright/test | grep @playwright | sed 's/.*@//') | |
echo PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION >> $GITHUB_ENV | |
echo PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION | |
- name: Get cached node modules | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
key: node_modules-${{ runner.arch }}-${{ env.NODE_VERSION }}-${{ hashFiles('yarn.lock') }} | |
- name: Install node_modules | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install --immutable | |
- name: Build the DBs | |
run: | | |
cp ${{ env.PARABOL_BUILD_ENV_PATH }} ./.env | |
yarn db:migrate | |
yarn pg:migrate up | |
yarn pg:build | |
yarn pg:generate | |
- name: Build for testing | |
run: yarn build | |
- name: Verify source is clean | |
run: git diff --quiet HEAD || (echo "Changes in generated files detected"; git diff; exit 1) | |
- name: Check Code Quality | |
run: yarn codecheck | |
- name: Run Predeploy for Testing | |
run: yarn predeploy | |
- name: Start testing server in background | |
run: | | |
yarn start & | |
- name: Wait for testing server to be healthy | |
run: curl -4 --retry 30 --retry-connrefused --retry-delay 2 http://localhost:3000/graphql | |
- name: Run server tests | |
run: yarn test:server -- --reporters=default --reporters=jest-junit | |
env: | |
JEST_JUNIT_OUTPUT_DIR: ./test-results/junit/server | |
- name: Run client tests | |
run: yarn test:client -- --reporters=default --reporters=jest-junit | |
env: | |
JEST_JUNIT_OUTPUT_DIR: ./test-results/junit/client | |
- name: Cache Playwright Browsers | |
id: cache-playwright-browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright | |
key: playwright-${{ runner.arch }}-${{ env.PLAYWRIGHT_VERSION }} | |
- name: Setup Playwright | |
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
- name: Run Playwright Tests | |
run: yarn workspace integration-tests test --reporter list,junit | |
env: | |
PLAYWRIGHT_JUNIT_OUTPUT_NAME: ./test-results/junit/junit.xml | |
- name: Store Artifacts from Failed Tests | |
if: failure() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-results | |
path: test-results/ | |
retention-days: 7 |