Skip to content

Merge pull request #11 from zylcom/order #39

Merge pull request #11 from zylcom/order

Merge pull request #11 from zylcom/order #39

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Continuous Integration
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
start_mysql:
runs-on: ubuntu-latest
steps:
- run: |
sudo systemctl start mysql.service
mysql -e 'CREATE DATABASE food_app;' -uroot -proot
mysql -e 'SHOW DATABASES;' -uroot -proot
automation_testing:
needs: start_mysql
environment: production
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Start MySQL
run: |
sudo systemctl start mysql.service
mysql -e 'CREATE DATABASE food_app;' -uroot -proot
mysql -e 'SHOW DATABASES;' -uroot -proot
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install Deps
run: npm ci
- name: Prisma migration & test
env:
DATABASE_URL: mysql://root:root@localhost:3306/food_app?connection_limit=5&pool_timeout=0
STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }}
STRIPE_ENDPOINT_SECRET: ${{ secrets.STRIPE_ENDPOINT_SECRET }}
run: |
npx prisma migrate deploy
npm test