forked from c2siorg/Codelabz
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Cypress-recommended workflow by replacing test.yml with cyp…
…ress.yml for enhanced E2E testing setup
- Loading branch information
1 parent
bcc89dd
commit 12a623b
Showing
1 changed file
with
112 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: Cypress End-to-End Tests | ||
|
||
on: push | ||
|
||
jobs: | ||
cypress-tests: | ||
name: Run Cypress Tests | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node: [18] | ||
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | ||
|
||
env: | ||
CI: false | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js Environment | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
- name: Cache Node.js modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ matrix.node }}- | ||
- name: Create .env File | ||
run: | | ||
echo "VITE_APP_FIREBASE_API_KEY=${{ secrets.VITE_APP_FIREBASE_API_KEY }}" >> .env | ||
echo "VITE_APP_FIREBASE_PROJECT_ID=${{ secrets.VITE_APP_FIREBASE_PROJECT_ID }}" >> .env | ||
echo "VITE_APP_FIREBASE_MESSAGING_SENDER_ID=${{ secrets.VITE_APP_FIREBASE_MESSAGING_SENDER_ID }}" >> .env | ||
echo "VITE_APP_FIREBASE_APP_ID=${{ secrets.VITE_APP_FIREBASE_APP_ID }}" >> .env | ||
echo "VITE_APP_FIREBASE_MEASUREMENTID=${{ secrets.VITE_APP_FIREBASE_MEASUREMENTID }}" >> .env | ||
echo "VITE_APP_FIREBASE_FCM_VAPID_KEY=${{ secrets.VITE_APP_FIREBASE_FCM_VAPID_KEY }}" >> .env | ||
echo "VITE_APP_AUTH_DOMAIN=${{ secrets.VITE_APP_AUTH_DOMAIN }}" >> .env | ||
echo "VITE_APP_DATABASE_URL=${{ secrets.VITE_APP_DATABASE_URL }}" >> .env | ||
echo "VITE_APP_USE_EMULATOR=true" >> .env | ||
echo "SKIP_PREFLIGHT_CHECK=true" >> .env | ||
echo "CI=false" >> .env | ||
echo "CYPRESS_PROJECT_ID=${{ secrets.CYPRESS_PROJECT_ID }}" >> .env | ||
- name: Prepare Firebase Service Account | ||
run: | | ||
mkdir -p functions/private | ||
echo "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" > functions/private/cl-dev-pk.json | ||
- name: Install Functions Dependencies | ||
run: cd functions && npm install --legacy-peer-deps | ||
|
||
- name: Install Firebase CLI | ||
run: npm install -g firebase-tools | ||
|
||
- name: Start Firebase Emulators | ||
run: | | ||
firebase emulators:start --import=./testdata --project ${{ secrets.VITE_APP_FIREBASE_PROJECT_ID }} & | ||
sleep 15 | ||
- name: Run Cypress Tests | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
browser: chrome | ||
record: true | ||
tag: node-${{ matrix.node }} | ||
parallel: true | ||
config-file: cypress.config.js | ||
group: "GitHub Actions" | ||
install-command: npm install --legacy-peer-deps | ||
build: npm run build | ||
start: npm run dev | ||
wait-on: "http://localhost:5173" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | ||
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} | ||
COMMIT_INFO_BRANCH: ${{ github.ref_name }} | ||
|
||
print-results: | ||
name: Print Cypress Cloud URL | ||
needs: cypress-tests | ||
runs-on: ubuntu-latest | ||
if: always() | ||
steps: | ||
- name: Print Cypress Cloud URL | ||
run: | | ||
echo Cypress finished with: ${{ needs.cypress-tests.outcome }} | ||
echo See results at ${{ needs.cypress-tests.outputs.resultsUrl }} | ||
handle-failure: | ||
name: Handle Failure | ||
if: ${{ failure() }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload Cypress Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Cypress Artifacts | ||
path: | | ||
cypress/screenshots | ||
cypress/videos | ||
if-no-files-found: ignore | ||
|
||
- name: Notify on Failure | ||
run: echo "The workflow has failed!" |