Skip to content

Update spec type from dk-portal catalog #13

Update spec type from dk-portal catalog

Update spec type from dk-portal catalog #13

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn install --ignore-scripts
- run: yarn run ci:prettier-check
- run: yarn run lint
test:
needs: [lint]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
node-version: '12'

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 23): Unexpected value '12'
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --ignore-scripts
- run: yarn run ci:test