Skip to content

add web client

add web client #3

Workflow file for this run

name: Client Checks
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
working-directory: client
build:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Build
run: npm run build
working-directory: client
lint:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Lint
run: npm run lint
working-directory: client
test:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Test
run: npm run test
working-directory: client