Skip to content

build: bump typeorm from 0.2.25 to 0.3.31 in /api #19

build: bump typeorm from 0.2.25 to 0.3.31 in /api

build: bump typeorm from 0.2.25 to 0.3.31 in /api #19

Workflow file for this run

name: backend
on:
push:
branches:
- next
pull_request:
branches:
- next
jobs:
build:

Check failure on line 12 in .github/workflows/backend.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/backend.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true