Skip to content

feat: Post 'EF Core with Fluent Migrator, the easy way' (#20) #26

feat: Post 'EF Core with Fluent Migrator, the easy way' (#20)

feat: Post 'EF Core with Fluent Migrator, the easy way' (#20) #26

Workflow file for this run

name: Production Deploy
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Unit tests
run: npm test
- name: Install playwright browsers
run: npx playwright install
- name: e2e tests
run: npm run test:e2e
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}