Skip to content

Merge pull request #30 from 8kto/feature/pwa-offline #303

Merge pull request #30 from 8kto/feature/pwa-offline

Merge pull request #30 from 8kto/feature/pwa-offline #303

Workflow file for this run

name: Build, test and lint
on:
push:
branches:
- '**'
jobs:
run-linters:
name: Linter and tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Setup Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- run: yarn install
- run: yarn tsc
- run: yarn lint
- run: yarn test