Skip to content

Update README.md

Update README.md #12

Workflow file for this run

name: Run Tests and Deploy
on:
push:
branches:
- master
jobs:
test-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install Playwright
run: npx playwright install
- name: Run vitest
run: yarn run test
- name: Run Playwright tests
run: yarn run test:playwright
# - name: Deploy to Vercel
# if: ${{ success() }}
# run: |
# npx vercel --prod