-
Notifications
You must be signed in to change notification settings - Fork 10
61 lines (56 loc) · 1.45 KB
/
sub-chart-check.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
name: "[sub-chart] Lint, Test, Typecheck"
on:
push:
paths:
- "sub-chart/**"
- ".github/workflows/sub-chart-*.yml"
- "Rakefile"
- "config.test.yml"
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Setup .env
run: |
cp ./config.test.yml ./config.yml
rake configure
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6.1
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: sub-chart/.node-version
cache: "pnpm"
cache-dependency-path: sub-chart/pnpm-lock.yaml
- name: Run sub-chart lint
working-directory: ./sub-chart
run: |
pnpm i
pnpm lint
- name: Run sub-chart test
working-directory: ./sub-chart
run: |
pnpm test
- name: Run sub-chart typecheck
working-directory: ./sub-chart
run: |
pnpm typecheck
- name: Build production
if: github.ref_name == 'main'
working-directory: ./sub-chart
run: |
pnpm build
- name: Build image
if: github.ref_name == 'main'
uses: ./.github/actions/build
with:
directory-name: sub-chart