Skip to content

Added a11y and data protection statements #18

Added a11y and data protection statements

Added a11y and data protection statements #18

Workflow file for this run

##
# Runs builds on GitHub pull requests to test that they should be working fine.
##
name: Test builds
on:
pull_request:
jobs:
test-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
test-server:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build