fix URL concat #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test build backend | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-backend: | |
name: Build backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21.x | |
cache: npm | |
cache-dependency-path: "**/package-lock.json" | |
- name: Install backend dependencies | |
run: npm ci | |
working-directory: backend | |
- name: Build backend | |
run: npm run build | |
working-directory: backend |