Fixed linting error #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |