Skip to content

build(deps-dev): bump eslint from 8.56.0 to 8.57.0 #160

build(deps-dev): bump eslint from 8.56.0 to 8.57.0

build(deps-dev): bump eslint from 8.56.0 to 8.57.0 #160

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19
- name: Install dependencies
run: yarn install
- name: Run Eslint
run: yarn lint
- name: Run TypeScript
run: yarn type-check
- name: Run tests
run: yarn test