Skip to content

chore: release v3.2.0 #119

chore: release v3.2.0

chore: release v3.2.0 #119

Workflow file for this run

name: CI on Pull Request
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: ESLint
run: yarn eslint
- name: Prettier
run: yarn prettier:ci