-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (59 loc) · 1.74 KB
/
test-actions.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
60
61
62
63
64
65
66
67
68
# pull_requestが送信作成された後、testが実行される
name: Vide Jest tests.
on:
# 手動デプロイの設定
workflow_dispatch:
inputs:
# テストするステージ
stage:
required: false
description: "dev or prd"
default: "dev"
logLevel:
description: 'Log level'
required: true
default: 'warning'
# 以下のブランチにpull_requestが送られるとtestを実行する
pull_request:
branches:
- main
- develop
# 指定したファイルの変更だけでは実行しない
paths-ignore:
- '*.md'
- 'docs/**'
jobs:
vide_jest_tests:
env:
RUN_HOME: 'portfolio-ui'
runs-on: ubuntu-18.04
defaults:
run:
working-directory: ${{ env.RUN_HOME }}
# 上から順に実行される
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.refs }}
# node環境を整備するためgithub製 actionを使用
- name: Setup Node.
uses: actions/setup-node@v2
with:
node-version: '14.15.4'
cache: 'yarn'
cache-dependency-path: ${{ env.RUN_HOME }}/yarn.lock
# node package install
- name: Node Package install.
run: yarn install
# working-directory: ./${{ env.RUN_HOME }}
# testを実行する
- name: Testing with jest
run: yarn jest
# working-directory: ./${{ env.RUN_HOME }}
- uses: artiomtr/jest-coverage-report-action@v2.0-rc.3
with:
working-directory: ${{ env.RUN_HOME }}
github-token: ${{ secrets.GITHUB_TOKEN }}
package-manager: yarn
test-script: yarn coverage:ci