-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (34 loc) · 896 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
33
34
35
36
37
38
39
40
name: 🔄 CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
# Cancel in-progress runs of this workflow.
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
REDWOOD_CI: 1
jobs:
ci:
name: 🔄 CI
runs-on: ubuntu-latest
strategy:
matrix:
project: [
'./baremetal',
'./coherence',
'./flightcontrol',
'./netlify',
'./render-postgres',
'./vercel',
]
fail-fast: false
steps:
- name: 🔄 CI / ${{ matrix.project }}
uses: redwoodjs/project-ci-action@main
with:
project-directory: ${{ matrix.project }}
run-lint: false