Skip to content

feat(core): main functions and typings for creating components #2

feat(core): main functions and typings for creating components

feat(core): main functions and typings for creating components #2

Workflow file for this run

name: Lint
on: pull_request
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
build:
name: Lint Packages
runs-on: ubuntu-latest
steps:
- name: Checkout code repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install pnpm package manager
run: npm i pnpm@latest -g
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- name: Setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Lint
run: pnpm lint