Skip to content

Commit

Permalink
Create pr-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
r7projects-shayan authored Jun 2, 2024
1 parent 0337a98 commit 500a06c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: PR Tests and Preview

on:
pull_request:
branches:
- main

jobs:
test-and-deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- macos-latest
- macos-11
- macos-12
- windows-latest
- windows-2016
- windows-2019
- windows-2022

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

- name: Install Vercel CLI
run: npm install -g vercel

- name: Deploy to Vercel
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
run: vercel --prod --confirm

0 comments on commit 500a06c

Please sign in to comment.