Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3bdbdd1
Bump actions/checkout from 6.0.1 to 6.0.2
dependabot[bot] Feb 1, 2026
a46771d
Bump @tanstack/react-query from 5.76.1 to 5.90.20
dependabot[bot] Feb 1, 2026
3ab4bcd
Bump zod from 4.3.5 to 4.3.6
dependabot[bot] Feb 17, 2026
67fc306
Bump @eslint/eslintrc from 3.3.1 to 3.3.3
dependabot[bot] Feb 25, 2026
86b0b64
Bump github/codeql-action from 4.31.10 to 4.35.1
dependabot[bot] Apr 1, 2026
8d9fe01
Bump actions/cache from 5.0.2 to 5.0.4
dependabot[bot] Apr 1, 2026
fa69c84
Bump actions/setup-node from 6.0.0 to 6.3.0
dependabot[bot] Apr 1, 2026
49a1676
Aanhef & Profiel Service Changes
TijmenVDBrink Apr 13, 2026
fdd0ad5
Merge PR #52: Bump actions/setup-node from 6.0.0 to 6.3.0
TijmenVDBrink Apr 13, 2026
54d317d
Merge PR #51: Bump actions/cache from 5.0.2 to 5.0.4
TijmenVDBrink Apr 13, 2026
1632964
Merge PR #50: Bump github/codeql-action from 4.31.10 to 4.35.1
TijmenVDBrink Apr 13, 2026
b6c9292
Merge PR #30: Bump actions/checkout from 6.0.1 to 6.0.2
TijmenVDBrink Apr 13, 2026
a407bed
Merge PR #34: Bump zod from 4.3.5 to 4.3.6
TijmenVDBrink Apr 13, 2026
be21e18
Merge PR #31: Bump @eslint/eslintrc from 3.3.1 to 3.3.3
TijmenVDBrink Apr 13, 2026
9e458ad
Merge PR #33: Bump @tanstack/react-query from 5.76.1 to 5.90.20
TijmenVDBrink Apr 13, 2026
28c3297
Button hergebruiken
TijmenVDBrink Apr 13, 2026
5133921
Merge branch 'main' into aanhef
TijmenVDBrink Apr 13, 2026
763817b
Update package-lock.json
TijmenVDBrink Apr 13, 2026
3bc76dc
Actualiteiten service aanroepen
TijmenVDBrink Apr 14, 2026
cda97e6
Update aan client
TijmenVDBrink Apr 14, 2026
356041f
geen filter op boub
TijmenVDBrink Apr 15, 2026
509acc0
Clarity & styling, & linting
TijmenVDBrink Apr 15, 2026
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
57 changes: 11 additions & 46 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: CI
on: [push, pull_request]

jobs:
install:
name: Install dependencies
lint:
name: Lint
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 #v6.0.2
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f #v6.0.2
with:
node-version: 20
cache: "npm"
Expand All @@ -21,61 +21,26 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

lint:
name: Lint
runs-on: ubuntu-latest
needs: install

steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Restore node_modules from cache
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 #v6.0.2
with:
node-version: 20

- name: Run lint
run: npm run lint

test:
name: Test
runs-on: ubuntu-latest
needs: install

steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Restore node_modules from cache
uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 #v6.0.2
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f #v6.0.2
with:
node-version: 20
cache: "npm"
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm ci

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

Expand Down Expand Up @@ -73,6 +73,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard (optional).
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
uses: github/codeql-action/upload-sarif@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1
with:
sarif_file: results.sarif
Loading