Skip to content

apply plugin to exported constants #7

apply plugin to exported constants

apply plugin to exported constants #7

Workflow file for this run

name: Check
on:
push:
branches:
- 'main'
pull_request:
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
cache: 'pnpm'
- run: pnpm install
- name: Check lint
run: npm run lint
- name: Check formatting
run: npm run format:check