chore(deps): lock file maintenance #18336
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: E2E Tests | |
on: | |
pull_request: | |
branches: [main, feature/*] | |
jobs: | |
cypress-run: | |
name: Cypress | |
runs-on: ubuntu-latest | |
services: | |
# Label used to access the service container | |
postgres: | |
# Docker Hub image | |
image: postgres@sha256:8d3be35b184e70d81e54cbcbd3df3c0b47f37d06482c0dd1c140db5dbcc6a808 | |
env: | |
POSTGRES_PASSWORD: postgres | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
redis: | |
# Docker Hub image | |
image: redis@sha256:a06cea905344470eb49c972f3d030e22f28f632c1b4f43bbe4a26a4329dd6be5 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
env: | |
# Needed for Next Auth to initialize | |
TOKEN_SECRET: testKey | |
APP_ENV: test | |
NEXT_PUBLIC_APP_ENV: test | |
REDIS_URL: localhost | |
DATABASE_URL: postgres://postgres:postgres@localhost:5432/formsDB | |
steps: | |
- name: Checkout | |
uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1.2.0 | |
- name: Node.JS Setup | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version-file: .nvmrc | |
- name: Yarn update to V4 | |
run: corepack enable && yarn set version berry | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: linux-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
linux-yarn- | |
- name: "Install dependencies" | |
run: yarn workspaces focus gcforms flag_initialization | |
- name: Cypress Tests | |
uses: cypress-io/github-action@0da3c06ed8217b912deea9d8ee69630baed1737e # v6.7.6 | |
with: | |
# we have already installed all dependencies above | |
install: false | |
browser: chrome | |
headed: false | |
build: yarn build:test | |
start: yarn start:test | |
wait-on: "http://localhost:3000" | |
config: baseUrl=http://localhost:3000 | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots |