Skip to content

Merge pull request #95 from jpudysz/feature/v1 #285

Merge pull request #95 from jpudysz/feature/v1

Merge pull request #95 from jpudysz/feature/v1 #285

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Type check files
run: yarn tsc
- name: Run tests
run: yarn test