Skip to content

changed from js to ts (#214) #84

changed from js to ts (#214)

changed from js to ts (#214) #84

name: Developement Pipeline
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
backend_tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '18.16.0'
- name: Install backend dependencies
working-directory: ./server
run: npm ci
- name: Run backend prettier checks
working-directory: ./server
run: npm run format
- name: Run backend tests
working-directory: ./server
run: npm run test
frontend_tests:
runs-on: ubuntu-latest
steps:

Check failure on line 31 in .github/workflows/fullstack_pipeline.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/fullstack_pipeline.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install frontend dependencies
working-directory: ./web
run: npm ci
- name: Run frontend prettier checks
working-directory: ./web
run: npm run format