-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (41 loc) · 1012 Bytes
/
push.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
name: '▶️ Push'
on:
push:
branches:
- main
- chore/**
- feat/**
- fix/**
concurrency:
group: push-${{ github.ref }}
cancel-in-progress: true
jobs:
push:
name: '👷️ CI'
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: '🐙️ Checkout'
uses: actions/checkout@v4
- name: '💽️ Init'
uses: ./.github/actions/init
- name: '📦 Install'
uses: ./.github/actions/install
- name: '🔺️ Cache (turbo)'
uses: ./.github/actions/cache
- name: '🏗️ Build'
uses: ./.github/actions/build
with:
COMMAND: 'build'
- name: '🚨️ Lint'
uses: ./.github/actions/lint
- name: '🦺 Type Check'
uses: ./.github/actions/type-check
with:
COMMAND: 'type-check'
- name: '🧪 Test'
uses: ./.github/actions/test
with:
COMMAND: 'test'