generated from amy-juan-li/electron-vite-react-typescript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 731 Bytes
/
ci.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
# This workflow is the entry point for all CI processes.
# It is from here that all other workflows are launched.
on:
push:
branches:
- main
- master
paths-ignore:
- '**.md'
- .editorconfig
- .gitignore
pull_request:
paths-ignore:
- '**.md'
- .editorconfig
- .gitignore
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: ./.github/workflows/lint.yml
typechecking:
uses: ./.github/workflows/typechecking.yml
tests:
uses: ./.github/workflows/tests.yml
draft_release:
if: github.event_name == 'push' && github.ref_name == 'main'
needs: [ typechecking, tests ]
uses: ./.github/workflows/release.yml