-
Notifications
You must be signed in to change notification settings - Fork 273
55 lines (46 loc) · 1.23 KB
/
pr-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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: Navigate to website directory
working-directory: ResourceHub/website
run: pwd
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
working-directory: ResourceHub/website
- name: Install dependencies
run: npm install
working-directory: ResourceHub/website
- name: Run tests
run: npm test
working-directory: ResourceHub/website
- name: Install Vercel CLI
run: npm install -g vercel
working-directory: ResourceHub/website
- name: Deploy to Vercel
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
run: vercel --prod --confirm
working-directory: ResourceHub/website