From ea5fcce40059111a8fb5f6ff7996d5373b68d9d8 Mon Sep 17 00:00:00 2001 From: Loke Date: Mon, 10 Jul 2023 10:59:51 +0200 Subject: [PATCH] feat: add main workflow --- .github/workflows/main.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..8158b6ec --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,33 @@ +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: npm ci + + - name: Run vitest + run: npm run test + + - name: Run Playwright tests + run: npm run test:playwright + + # - name: Deploy to Vercel + # if: ${{ success() }} + # run: | + # npx vercel --prod