Skip to content

fix: remove the trailling slashes #15

fix: remove the trailling slashes

fix: remove the trailling slashes #15

Workflow file for this run

name: Frontend CI
on:
push:
branches: [ main ]
paths:
- 'client/**'
pull_request:
branches: [ main ]
paths:
- 'client/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '>=18'
- name: Install dependencies
run: npm ci
# - name: Run tests
# run: npm test // Add tests later
- name: Build
run: npm run build