Skip to content

chore(deps): update dependency eslint-plugin-unicorn to v68 #1015

chore(deps): update dependency eslint-plugin-unicorn to v68

chore(deps): update dependency eslint-plugin-unicorn to v68 #1015

Workflow file for this run

name: ci
on:
push:
branches-ignore:
- gh-pages
- 'renovate/**'
pull_request:
jobs:
check:
runs-on: ubuntu-slim
needs:
- build
- lint
steps:
- run: 'echo 1'
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20', '22']
steps:
- uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn
- run: npx tsc
- run: yarn build
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20', '22']
steps:
- uses: actions/checkout@v6
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn
- run: npx prettier --check .
- run: yarn lint