Skip to content

♻️ refactor: remove license #35

♻️ refactor: remove license

♻️ refactor: remove license #35

Workflow file for this run

name: CI
on: [push]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Setup node
with:
node-version: 20.x
cache: yarn
- name: Setup limit watchers
run: sudo sysctl -w fs.inotify.max_user_watches=524288
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test