Skip to content

ci(release): version 0.0.5 #18

ci(release): version 0.0.5

ci(release): version 0.0.5 #18

Workflow file for this run

---
name: Lint
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
- name: yarn
run: yarn install --frozen-lockfile
- name: prettier
run: yarn prettier --check .
- name: lint
run: yarn eslint .