Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions .github/workflows/code-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,51 @@ name: Code Quality Assurance
on:
push:
branches: [main]
paths:
- 'public/**'
- 'src/**'
- '**/*.json'
- '**/*.js'
- '**/*.ts'
- '**/*.tsx'
- '**/*.jsx'
- '**/*.css'
- '**/*.scss'
- '**/*.html'
- '.github/workflows/code-qa.yml'
pull_request:
branches: [main]
paths:
- 'public/**'
- 'src/**'
- '**/*.json'
- '**/*.js'
- '**/*.ts'
- '**/*.tsx'
- '**/*.jsx'
- '**/*.css'
- '**/*.scss'
- '**/*.html'
- '.github/workflows/code-qa.yml'

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ on:
branches: [main]
paths:
- '**/*.md'
- '.markdownlint.json'
- '.markdownlintignore'
- '.github/workflows/markdown-lint.yml'
pull_request:
branches: [main]
paths:
- '**/*.md'
- '.markdownlint.json'
- '.markdownlintignore'
- '.github/workflows/markdown-lint.yml'

jobs:
Expand All @@ -20,11 +24,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Loading