fix: cascade true #171
This file contains hidden or 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: check code style and run tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: restore npm cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: install deps | |
| run: | | |
| npm ci | |
| # - name: npm audit | |
| # run: | | |
| # npm run audit | |
| - name: check code style | |
| run: | | |
| npm run lint | |
| - name: env config | |
| run: | | |
| echo "PG_DB_URL=postgresql://postgres:postgres@localhost:5432/postgres" >> .env && \ | |
| echo "PORT=8080" >> .env && \ | |
| echo "AWS_S3_KEY=dawdwadwa" >> .env && \ | |
| echo "AWS_S3_SECRET=dawdwadwa" >> .env && \ | |
| echo "AWS_SES_KEY=dwadwadwa" >> .env && \ | |
| echo "AWS_SES_SECRET=dwadwadwa" >> .env && \ | |
| echo "NODE_ENV=development" >> .env && \ | |
| echo "JWT_SIGNING_KEY_SECRET=dwadwawajmdoiwandçiwand.dwad21cxajddwaikdawid.dwawadwadwaidjiwajdwajdwa" >> .env && \ | |
| echo "PUBLIC_BUCKET_NAME=gamix-public" >> .env && \ | |
| echo "PRIVATE_BUCKET_NAME=gamix-private" >> .env && \ | |
| echo "GOOGLE_CLIENT_ID=dwadwadwa" >> .env && \ | |
| echo "GOOGLE_CLIENT_SECRET=dwadwadwa" >> .env && \ | |
| echo "GITHUB_CLIENT_ID=dwadwadwa" >> .env && \ | |
| echo "GITHUB_CLIENT_SECRET=dwadwadwa" >> .env && \ | |
| echo "LINKEDIN_CLIENT_ID=dwadwadwa" >> .env && \ | |
| echo "LINKEDIN_CLIENT_SECRET=dwadwadwa" >> .env && \ | |
| echo "REDIRECT_URL=http://localhost:8080" >> .env | |
| - name: Install Docker | |
| run: | | |
| sudo apt-get remove -y docker docker-engine docker.io containerd runc || true | |
| sudo apt-get update | |
| sudo apt-get install -y ca-certificates curl gnupg lsb-release | |
| sudo mkdir -p /etc/apt/keyrings | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
| sudo apt-get update | |
| sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | |
| sudo systemctl start docker | |
| sudo systemctl enable docker | |
| sudo usermod -aG docker $USER | |
| sleep 5 | |
| docker --version | |
| docker compose version | |
| - name: Start PostgreSQL with Docker Compose | |
| run: | | |
| cat > docker-compose.test.yml << EOF | |
| services: | |
| postgres: | |
| image: postgres:14 | |
| restart: always | |
| environment: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_DB: postgres | |
| ports: | |
| - "5432:5432" | |
| volumes: | |
| - postgres_test_data:/var/lib/postgresql/data | |
| - ./init-db.sql:/docker-entrypoint-initdb.d/init-db.sql | |
| healthcheck: | |
| test: ["CMD-SHELL", "pg_isready -U postgres"] | |
| interval: 5s | |
| timeout: 5s | |
| retries: 5 | |
| volumes: | |
| postgres_test_data: | |
| EOF | |
| docker compose -f docker-compose.test.yml up -d postgres | |
| echo "Waiting for PostgreSQL to be ready..." | |
| timeout 60 bash -c 'until docker compose -f docker-compose.test.yml exec -T postgres pg_isready -U postgres; do sleep 2; done' | |
| docker compose -f docker-compose.test.yml exec -T postgres psql -U postgres -d postgres -c "SELECT 1;" | |
| - name: Run Tests | |
| run: npm run test | |
| - name: Stop Docker Compose | |
| if: always() | |
| run: | | |
| docker compose -f docker-compose.test.yml down -v | |
| # Clean up test volumes | |
| docker volume prune -f |