The github actions were previously ran with Node 20, this bumps them to Node 22. README was also updated to reflect currently used version of Node.
83 lines
1.9 KiB
YAML
83 lines
1.9 KiB
YAML
name: Development checks
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
push:
|
|
branches: [ "main" ]
|
|
merge_group:
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 22
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run build
|
|
run: npm run build
|
|
|
|
lint-checks:
|
|
name: ESLint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 22
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Run lint check
|
|
run: npm run lint
|
|
|
|
circular-dependencies:
|
|
name: Circular Dependencies Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 22
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Check for circular dependencies
|
|
run: npm run circular
|
|
|
|
api-changes:
|
|
name: Manual API Changes Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 22
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Check for manual changes to API
|
|
run: |
|
|
npm run api:generate
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
echo
|
|
echo "✗ API manually changed, please refer to the README for the procedure to follow for programmatically generated API endpoints."
|
|
exit 1
|
|
else
|
|
echo
|
|
echo "✓ No manual API changes."
|
|
exit 0
|
|
fi
|