-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (70 loc) · 2.04 KB
/
sub.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: test
on:
pull_request:
branches:
- master
- develop
env:
cache-version: v8
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/yarn
key: ${{ env.cache-version }}-${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ env.cache-version }}-${{ runner.os }}-node-
- name: install
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install
- name: lint
run: yarn lint:check
- name: test
env:
TZ: 'Asia/Tokyo'
run: yarn test
- name: e2e
env:
BASE_URL: ${{ secrets.BASE_URL }}
MICRO_CMS: ${{ secrets.MICRO_CMS }}
ARTICLE_URL: ${{ secrets.ARTICLE_URL }}
TAG_URL: ${{ secrets.TAG_URL }}
CATEGORY_URL: ${{ secrets.CATEGORY_URL }}
run: yarn e2e
- name: Upload screenshots
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-snapshots
path: cypress/snapshots
# Storybookをビルド
- name: build Storybook
run: yarn build:sb
# Nuxtをビルド
- name: create .env file
run: echo "${{ secrets.ENV_FIREBASE }}" > .env
- name: build Nuxt
env:
BASE_URL: ${{ secrets.BASE_URL }}
MICRO_CMS: ${{ secrets.MICRO_CMS }}
ARTICLE_URL: ${{ secrets.ARTICLE_URL }}
TAG_URL: ${{ secrets.TAG_URL }}
CATEGORY_URL: ${{ secrets.CATEGORY_URL }}
run: yarn generate
- uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
title: 'develop'
description: 'develop branch test'
nofail: false
nodetail: false