-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (55 loc) · 1.59 KB
/
pull_request.yml
File metadata and controls
58 lines (55 loc) · 1.59 KB
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
56
57
58
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Pull Request CI
on:
pull_request:
branches: [ main ]
jobs:
verify-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v2
- name: Setup Node.js v14.16
uses: actions/setup-node@v1
with:
node-version: 14.16
- name: Install dependencies
run: npm install
- name: Typescript Compilation Check
run: yarn typecheck
- name: ESLinting Check
run: yarn lint
- name: Tests Check
run: yarn test
- uses: actions/upload-artifact@v2
with:
name: Test Coverage - Frontend
path: frontend/coverage/*
verify-backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v2
- name: Setup Node.js v14.16
uses: actions/setup-node@v1
with:
node-version: 14.16
- name: Install dependencies
run: npm install
- name: Typescript Compilation Check
run: yarn typecheck
- name: ESLinting Check
run: yarn lint
- name: Tests Check
run: yarn test
- name: ls
run: ls coverage
- uses: actions/upload-artifact@v2
with:
name: Test Coverage - Backend
path: backend/coverage/*