Skip to content

Fixed linting error #80

Fixed linting error

Fixed linting error #80

Workflow file for this run

name: Lint and test
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- '**'
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
container:
image: node:alpine
steps:
- uses: actions/checkout@v2
- run: yarn
- run: yarn run lint:ci --max-warnings 1
tests:
needs: [lint]
name: Tests
runs-on: ubuntu-latest
container:
image: node:lts-alpine
steps:
- uses: actions/checkout@v2
- run: yarn
- run: yarn run test
build:
needs: [lint, tests]
name: Build
runs-on: ubuntu-latest
# if: github.event_name == 'push' && github.ref == 'refs/heads/master'
container:
image: node:lts-alpine
steps:
- uses: actions/checkout@v2
- run: yarn
- run: npm install -g [email protected]
- run: tsc --version
- run: yarn run build