Skip to content

chore(infra): remove ESLint #2

chore(infra): remove ESLint

chore(infra): remove ESLint #2

Workflow file for this run

name: 'ci'
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- name: Run lint
run: yarn lint
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- name: Run code style lint
run: yarn style
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- uses: bahmutov/npm-install@v1
- name: Run unit tests
run: yarn test
test-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
- name: Run type declaration tests
run: yarn test:types