database works #37
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: π± Mobile | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
build-and-test: | |
name: Build and Test | |
uses: ./.github/workflows/shared-ci.yml | |
with: | |
node-version: '20' | |
# vitest: | |
# name: β‘ Vitest | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - name: β¬οΈ Checkout repo | |
# uses: actions/checkout@v4 | |
# - name: β Setup node | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: π₯ Download deps | |
# uses: bahmutov/npm-install@v1 | |
# - name: π Copy test env vars | |
# run: cp .env.example .env | |
# - name: πΌ Build icons | |
# run: npm run build:icons | |
# - name: β‘ Run vitest | |
# run: npm run test -- --coverage | |
# playwright: | |
# name: π Playwright | |
# runs-on: ubuntu-22.04 | |
# timeout-minutes: 60 | |
# steps: | |
# - name: β¬οΈ Checkout repo | |
# uses: actions/checkout@v4 | |
# - name: π Copy test env vars | |
# run: cp .env.example .env | |
# - name: β Setup node | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: π₯ Download deps | |
# uses: bahmutov/npm-install@v1 | |
# - name: π₯ Install Playwright Browsers | |
# run: npm run test:e2e:install | |
# - name: π Setup Database | |
# run: npx prisma migrate deploy | |
# - name: π¦ Cache Database | |
# id: db-cache | |
# uses: actions/cache@v3 | |
# with: | |
# path: prisma/data.db | |
# key: | |
# db-cache-schema_${{ hashFiles('./prisma/schema.prisma') | |
# }}-migrations_${{ hashFiles('./prisma/migrations/*/migration.sql') | |
# }} | |
# - name: π± Seed Database | |
# if: steps.db-cache.outputs.cache-hit != 'true' | |
# run: npx prisma db seed | |
# env: | |
# MINIMAL_SEED: true | |
# - name: π Build | |
# run: npm run build | |
# - name: π Playwright tests | |
# run: npx playwright test | |
# - name: π Upload report | |
# uses: actions/upload-artifact@v3 | |
# if: always() | |
# with: | |
# name: playwright-report | |
# path: playwright-report/ | |
# retention-days: 30 | |
deploy: | |
name: π Deploy Mobile | |
runs-on: ubuntu-22.04 | |
needs: [build-and-test] | |
environment: Production | |
concurrency: Production | |
# only build/deploy branches on pushes | |
if: ${{ github.event_name == 'push' }} | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 |