-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (38 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
name: CI
on:
workflow_dispatch:
# This action is triggered on any branch that opens a pull request.
push:
branches:
- "*"
# This action is not triggered when markdown files are modified.
paths-ignore:
- "**.md"
pull_request:
branches:
- "*"
# This action is not triggered when markdown files are modified.
paths-ignore:
- "**.md"
jobs:
dev:
runs-on: ubuntu-22.04
steps:
# Run the dev action -----------------------------------------------------
- uses: actions/[email protected]
- name: Run development checks
uses: ./.github/actions/dev
test:
runs-on: ubuntu-22.04
steps:
# Run the dev action -----------------------------------------------------
- uses: actions/[email protected]
- name: Run test checks
uses: ./.github/actions/test
prod:
runs-on: ubuntu-22.04
steps:
# Run the prod action ----------------------------------------------------
- uses: actions/[email protected]
- name: Run production checks
uses: ./.github/actions/prod