Skip to content

feat: update to common utils #1052

feat: update to common utils

feat: update to common utils #1052

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: ${{ github.head_ref != 'changeset-release/main' }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint