Skip to content

Add voting API endpoint. (#108) #49

Add voting API endpoint. (#108)

Add voting API endpoint. (#108) #49

Workflow file for this run

name: CI Client
on:
push:
paths:
- client/**
- .github/workflows/ci.client.yaml
defaults:
run:
working-directory: client
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run build
env:
NODE_OPTIONS: "--openssl-legacy-provider"