-
-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 937 Bytes
/
qa.yaml
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
name: "Code quality assurance"
on:
pull_request:
paths-ignore:
- "docs/**"
push:
branches:
- "main"
tags:
- v*
schedule:
- cron: "0 8 * * 1" # At 08:00 on Monday
env:
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.ORGANIZATION_ACCESS_TOKEN }}"}}'
jobs:
php:
name: "PHP Code quality assurance"
uses: "fastybird/.github/.github/workflows/php-cs.yaml@main"
secrets: inherit
with:
php: "${{ matrix.php-version }}"
strategy:
fail-fast: false
matrix:
php-version: [ "8.2" ]
operating-system: [ "ubuntu-latest" ]
js:
name: "JS Code quality assurance"
uses: "fastybird/.github/.github/workflows/prettier.yaml@main"
secrets: inherit
with:
node: "${{ matrix.node-version }}"
strategy:
fail-fast: false
matrix:
node-version: [ "20" ]
operating-system: [ "ubuntu-latest" ]