Skip to content

build(deps): bump the client_deps group across 1 directory with 25 updates #114

build(deps): bump the client_deps group across 1 directory with 25 updates

build(deps): bump the client_deps group across 1 directory with 25 updates #114

Workflow file for this run

name: "Lint and Test (Client)"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
environment: test
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
env:
NEXT_PUBLIC_API_URL: http://localhost:8080/api
AUTH_SECRET: secret
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: server/package-lock.json
- name: Install dependencies
run: npm install
- name: Test
run: npm run test
- name: Test (e2e)
run: npm run test:e2e:headless
lint:
environment: test
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: server/package-lock.json
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint