Skip to content

fix: invalid compressing flag implementation (#83) #117

fix: invalid compressing flag implementation (#83)

fix: invalid compressing flag implementation (#83) #117

Workflow file for this run

name: Lint, typecheck and test
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: <registry url>
- run: yarn install
- run: yarn lint
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: <registry url>
- run: yarn install
- run: yarn typecheck
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: <registry url>
- run: yarn install
- run: yarn test