Skip to content

Cicd refactor

Cicd refactor #4

Workflow file for this run

name: Testing - fox-deck-app
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
# testing the fox-deck frontend
test_app:
runs-on: ubuntu-latest
env:

Check failure on line 15 in .github/workflows/fox-deck-app.yml

View workflow run for this annotation

GitHub Actions / Testing - fox-deck-app

Invalid workflow file

The workflow is not valid. .github/workflows/fox-deck-app.yml (Line: 15, Col: 9): Unexpected value ''
defaults:
run:
working-directory: ./apps/fox-deck-app
name: Run Unit-Tests
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Rename environment file
run: mv .env.example .env
- run: npm ci
- run: npm run test