adding package #614
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: Code Crafters E-commerce CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_TEST_URL: ${{ secrets.DATABASE_TEST_URL }} | |
PORT: 5000 | |
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} | |
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} | |
GOOGLE_CALLBACK_URL: ${{ secrets.GOOGLE_CALLBACK_URL }} | |
HOST_MODE: remote | |
NODE_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build --if-present | |
- name: Verify environment variables | |
run: | | |
echo "MODE=$MODE" | |
echo "DATABASE_TEST_URL=$DATABASE_TEST_URL" | |
echo "GOOGLE_CALLBACK_URL=$GOOGLE_CALLBACK_URL" | |
echo "GOOGLE_CALLBACK_ID=$GOOGLE_CLIENT_ID" | |
echo "NODE_ENV=$NODE_ENV" | |
- name: Run tests | |
run: npm run test |