File tree 8 files changed +2628
-2353
lines changed
8 files changed +2628
-2353
lines changed Original file line number Diff line number Diff line change @@ -3,27 +3,51 @@ name: Code Quality Assurance
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths :
7
+ - ' public/**'
8
+ - ' src/**'
9
+ - ' **/*.json'
10
+ - ' **/*.js'
11
+ - ' **/*.ts'
12
+ - ' **/*.tsx'
13
+ - ' **/*.jsx'
14
+ - ' **/*.css'
15
+ - ' **/*.scss'
16
+ - ' **/*.html'
17
+ - ' .github/workflows/code-qa.yml'
6
18
pull_request :
7
19
branches : [main]
20
+ paths :
21
+ - ' public/**'
22
+ - ' src/**'
23
+ - ' **/*.json'
24
+ - ' **/*.js'
25
+ - ' **/*.ts'
26
+ - ' **/*.tsx'
27
+ - ' **/*.jsx'
28
+ - ' **/*.css'
29
+ - ' **/*.scss'
30
+ - ' **/*.html'
31
+ - ' .github/workflows/code-qa.yml'
8
32
9
33
jobs :
10
34
build :
11
35
runs-on : ubuntu-latest
12
36
13
37
strategy :
14
38
matrix :
15
- node-version : [20 .x]
39
+ node-version : [22 .x]
16
40
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
17
41
18
42
steps :
19
43
- name : Checkout repository
20
44
uses : actions/checkout@v4
21
45
- name : Use Node.js ${{ matrix.node-version }}
22
- uses : actions/setup-node@v3
46
+ uses : actions/setup-node@v4
23
47
with :
24
48
node-version : ${{ matrix.node-version }}
25
49
- name : Cache Node.js modules
26
- uses : actions/cache@v3
50
+ uses : actions/cache@v4
27
51
with :
28
52
path : ~/.npm
29
53
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Original file line number Diff line number Diff line change 5
5
branches : [main]
6
6
paths :
7
7
- ' **/*.md'
8
+ - ' .markdownlint.json'
9
+ - ' .markdownlintignore'
8
10
- ' .github/workflows/markdown-lint.yml'
9
11
pull_request :
10
12
branches : [main]
11
13
paths :
12
14
- ' **/*.md'
15
+ - ' .markdownlint.json'
16
+ - ' .markdownlintignore'
13
17
- ' .github/workflows/markdown-lint.yml'
14
18
15
19
jobs :
@@ -20,11 +24,11 @@ jobs:
20
24
- name : Checkout repository
21
25
uses : actions/checkout@v4
22
26
- name : Use Node.js ${{ matrix.node-version }}
23
- uses : actions/setup-node@v3
27
+ uses : actions/setup-node@v4
24
28
with :
25
29
node-version : ${{ matrix.node-version }}
26
30
- name : Cache Node.js modules
27
- uses : actions/cache@v3
31
+ uses : actions/cache@v4
28
32
with :
29
33
path : ~/.npm
30
34
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Original file line number Diff line number Diff line change 2
2
/// <reference types="next/image-types/global" />
3
3
4
4
// NOTE: This file should not be edited
5
- // see https://nextjs.org/docs/app/building-your-application/configuring /typescript for more information.
5
+ // see https://nextjs.org/docs/app/api-reference/config /typescript for more information.
You can’t perform that action at this time.
0 commit comments