-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (58 loc) · 1.43 KB
/
test.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
56
57
58
59
name: 'build-test'
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
yarn --frozen-lockfile
- run: |
yarn all
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Upload coverage
uses: caffco/code-climate-github-action@v0.0.2
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
repository_root_path: ${{github.workspace}}
collect_coverage: 'true'
coverage_file_patterns: |
coverage/lcov.info:lcov
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Clear dependencies
run: rm -rf node_modules
- name: Run integration tests
uses: ./
with:
base_branch: origin/main