Skip to content

Fixed workflow

Fixed workflow #2

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 --max-warnings 1
build:
needs: [lint]
name: Build
runs-on: ubuntu-latest
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
container:
image: node:lts-alpine
steps:
- uses: actions/checkout@v2
- run: yarn
- run: npm install -g typescript
- run: tsc --version
- run: yarn run build