Skip to content

fix background again #42

fix background again

fix background again #42

Workflow file for this run

name: frontend

Check failure on line 1 in .github/workflows/frontend.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/frontend.yaml

Invalid workflow file

(Line: 30, Col: 9): Unexpected value 'run', (Line: 31, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 33, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches:
- main
- develop
permissions:
contents: read
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# The "build" workflow
ci:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
run: npm ci
- name: Install dependencies
- run: npm run build --if-present
- name: Install dependencies
- run: npm test