Skip to content

test: comments only detect #25

test: comments only detect

test: comments only detect #25

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